Skip to content

Commit

Permalink
add all reqs to vendor. Also skip ATLAS topics, since they're junk an…
Browse files Browse the repository at this point in the history
…yway
  • Loading branch information
Balint Csergo authored and Balint Csergo committed Aug 1, 2017
1 parent c0fe2b1 commit 932f119
Show file tree
Hide file tree
Showing 10 changed files with 1,603 additions and 1 deletion.
2 changes: 1 addition & 1 deletion kafka.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (c *kafkaCollector) Collect(ch chan<- prometheus.Metric) {
}
ch <- prometheus.MustNewConstMetric(c.topicsCount, prometheus.GaugeValue, float64(len(topics)))
for _, topic := range topics {
if topic == "__consumer_offsets" {
if topic == "__consumer_offsets" || topic == "ATLAS_ENTITIES" || topic == "ATLAS_HOOK" {
continue
}
partitions, _ := kafkaConsumer.Partitions(topic)
Expand Down
28 changes: 28 additions & 0 deletions vendor/github.com/pierrec/lz4/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions vendor/github.com/pierrec/lz4/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 932f119

Please sign in to comment.