Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Helm fixes and feature update #165

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Jun 18, 2020

  1. fix: ServiceMonitor scrape all instances of exporter

    If you install multiple instances of exporter to monitor
    multiple kafka clusters, each serviceMonitor will scrape
    all instances regardless of the different installation name.
    for eg:
    ```
    helm install kafka-exporter-cluster1 ./kafka-exporter
    helm install kafka-exporter-cluster2 ./kafka-exporter
    ```
    because the instance name, in this case the installation name,
    is the only differentiator in these installations are absent in
    the serviceMonitor selector, serviceMonitor will all instances.
    
    Signed-off-by: Rajesh Rajendran <[email protected]>
    rjshrjndrn committed Jun 18, 2020
    Configuration menu
    Copy the full SHA
    061f361 View commit details
    Browse the repository at this point in the history
  2. feat: Adding helm option for

    1. Adding zookeeper endpoints
    2. Adding additional flags can be given via values.yaml
    for eg:
    ```
    kafkaExporter:
      zookeeper:
        servers:
          - kafka-1-cp-zookeeper.kafka-1.svc.cluster.local:2181
      kafka:
        servers:
          - kafka-1-cp-kafka.kafka-1.svc.cluster.local:9092
      additionalFlags:
        - --use.consumelag.zookeeper
    
    ```
    
    Signed-off-by: Rajesh Rajendran <[email protected]>
    rjshrjndrn committed Jun 18, 2020
    Configuration menu
    Copy the full SHA
    1f28a5b View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2020

  1. Alerting rule for kafka exporter

    - broker unavailable
    - ISR sync issue
    - Kafka leader abnormal change
    
    Signed-off-by: Rajesh Rajendran <[email protected]>
    rjshrjndrn committed Jun 25, 2020
    Configuration menu
    Copy the full SHA
    3609856 View commit details
    Browse the repository at this point in the history