美文网首页服务器监控KubernetesDocker容器
kafka exporter v0.3.0 发布: Promet

kafka exporter v0.3.0 发布: Promet

作者: danielqsj | 来源:发表于2017-12-06 22:10 被阅读777次

    时隔1个半月,kakfa exporter v0.3.0于今日正式发布,欢迎大家试用。

    项目地址

    Github: https://github.com/danielqsj/kafka_exporter
    Docker Hub: https://hub.docker.com/r/danielqsj/kafka-exporter

    项目状态

    自v0.2.0版本被Prometheus项目官方推荐以来,镜像累计下载量已超过5.4k,已经稳定运行在多个平台。

    特点

    kafka exporter 通过 Kafka Protocol Specification 收集 Brokers, Topics 以及 Consumer Groups的相关指标,使用简单,运行高效,相比于以往通过kafka内置的脚本进行收集,由于没有了JVM的运行开销,指标收集时间从分钟级别降到秒级别,便于大规模集群的监控。

    使用方法

    详见项目说明文档

    指标

    Brokers

    Metrics details

    Name Exposed informations
    kafka_brokers Number of Brokers in the Kafka Cluster

    Metrics output example

    # HELP kafka_brokers Number of Brokers in the Kafka Cluster.
    # TYPE kafka_brokers gauge
    kafka_brokers 3
    

    Topics

    Metrics details

    Name Exposed informations
    kafka_topic_partitions Number of partitions for this Topic
    kafka_topic_partition_current_offset Current Offset of a Broker at Topic/Partition
    kafka_topic_partition_oldest_offset Oldest Offset of a Broker at Topic/Partition
    kafka_topic_partition_in_sync_replica Number of In-Sync Replicas for this Topic/Partition
    kafka_topic_partition_leader Leader Broker ID of this Topic/Partition
    kafka_topic_partition_leader_is_preferred 1 if Topic/Partition is using the Preferred Broker
    kafka_topic_partition_replicas Number of Replicas for this Topic/Partition
    kafka_topic_partition_under_replicated_partition 1 if Topic/Partition is under Replicated

    Metrics output example

    # HELP kafka_topic_partitions Number of partitions for this Topic
    # TYPE kafka_topic_partitions gauge
    kafka_topic_partitions{topic="__consumer_offsets"} 50
    
    # HELP kafka_topic_partition_current_offset Current Offset of a Broker at Topic/Partition
    # TYPE kafka_topic_partition_current_offset gauge
    kafka_topic_partition_current_offset{partition="0",topic="__consumer_offsets"} 0
    
    # HELP kafka_topic_partition_oldest_offset Oldest Offset of a Broker at Topic/Partition
    # TYPE kafka_topic_partition_oldest_offset gauge
    kafka_topic_partition_oldest_offset{partition="0",topic="__consumer_offsets"} 0
    
    # HELP kafka_topic_partition_in_sync_replica Number of In-Sync Replicas for this Topic/Partition
    # TYPE kafka_topic_partition_in_sync_replica gauge
    kafka_topic_partition_in_sync_replica{partition="0",topic="__consumer_offsets"} 3
    
    # HELP kafka_topic_partition_leader Leader Broker ID of this Topic/Partition
    # TYPE kafka_topic_partition_leader gauge
    kafka_topic_partition_leader{partition="0",topic="__consumer_offsets"} 0
    
    # HELP kafka_topic_partition_leader_is_preferred 1 if Topic/Partition is using the Preferred Broker
    # TYPE kafka_topic_partition_leader_is_preferred gauge
    kafka_topic_partition_leader_is_preferred{partition="0",topic="__consumer_offsets"} 1
    
    # HELP kafka_topic_partition_replicas Number of Replicas for this Topic/Partition
    # TYPE kafka_topic_partition_replicas gauge
    kafka_topic_partition_replicas{partition="0",topic="__consumer_offsets"} 3
    
    # HELP kafka_topic_partition_under_replicated_partition 1 if Topic/Partition is under Replicated
    # TYPE kafka_topic_partition_under_replicated_partition gauge
    kafka_topic_partition_under_replicated_partition{partition="0",topic="__consumer_offsets"} 0
    

    Consumer Groups

    Metrics details

    Name Exposed informations
    kafka_consumergroup_current_offset Current Offset of a ConsumerGroup at Topic/Partition
    kafka_consumergroup_lag Current Approximate Lag of a ConsumerGroup at Topic/Partition

    Metrics output example

    # HELP kafka_consumergroup_current_offset Current Offset of a ConsumerGroup at Topic/Partition
    # TYPE kafka_consumergroup_current_offset gauge
    kafka_consumergroup_current_offset{consumergroup="KMOffsetCache-kafka-manager-3806276532-ml44w",partition="0",topic="__consumer_offsets"} -1
    
    # HELP kafka_consumergroup_lag Current Approximate Lag of a ConsumerGroup at Topic/Partition
    # TYPE kafka_consumergroup_lag gauge
    kafka_consumergroup_lag{consumergroup="KMOffsetCache-kafka-manager-3806276532-ml44w",partition="0",topic="__consumer_offsets"} 1
    

    Release Notes

    v0.3.0

    • [FEATURE] Support kafka SASL/PLAIN authentication
    • [FEATURE] Support topic filter
    • [BUGFIX] Fix topics not sync when modifying topic list

    v0.2.0

    • [CHANGE] Change default port to 9308
    • [ENHANCEMENT] Support multiple addresses for kafka servers

    v0.1.0

    • Initial release

    相关文章

      网友评论

      • 巧笑倩兮美目盼兮_7227:哎 哥们 看看这个:
        goroutine 1 [running]:
        main.NewExporter(0xc420051c20, 0x1, 0x1, 0x1, 0x8e9778, 0x0, 0x8e9778, 0x0, 0x0, 0x8e9778, ...)
        /home/travis/gopath/src/github.com/danielqsj/kafka_exporter/kafka_exporter.go:205 +0x92d
        main.main()
        /home/travis/gopath/src/github.com/danielqsj/kafka_exporter/kafka_exporter.go:440 +0x1d70

      本文标题:kafka exporter v0.3.0 发布: Promet

      本文链接:https://www.haomeiwen.com/subject/agzlixtx.html