@LamedB_twitter
I used the latest version with docker, and when I calling the /metrics I can't see the burrow_kafka_consumer_partition_lag metics. I can see all the burrow_kafka_topic_partition_offset but I want the lag, what might be wrong?
Was there a solution to this issue? I'm having the same problem: I've successfully build and deployed Burrow v1.3.4 in a k8s cluster, it seemingly can talk to Kafka & Zookeeper successfully, but the only Prometheus metrics it exports are burrow_kafka_topic_partition_offset
when really what I want is burrow_kafka_consumer_lag_total
. I feel I must have done something wrong, though in a test environment with broadly the same setup I had success, so I'm confused about what I could've done wrong :sweat_smile:
Hi guys,
Have a question whether you have an issue with group-denylist. I created a regex and config looks like this:
group-denylist="ˆ(?!crmgroup-222|issgroup-333).*$)"
Issue I'm meeting with is that I'm getting error mail if some other group which is not covered in regex like "test-group" is having an issue. I don't want to get an error email group for that one and that's the reason why I created this regex. No, anyone has similar experience or I'm doing something wrong?
client-profile
section of the config — https://github.com/linkedin/Burrow/wiki/Configuration#client-profile.
[client-profile.MYCLIENT]
kafka-version="2.x.x"
client-id="burrow-myclient"
sasl="PLAIN"
[sasl.PLAIN]
username="Adminuser"
password="Adminpassword"
handshake-first=false
[consumer.CLUSTER]
class-name="kafka"
cluster="CLUSTER"
client-profile="MYCLIENT"
That should be all you need.
[client-profile.test]
client-id="burrow-test"
kafka-version="0.11.0.2"
sasl="PLAINSS"
tls="mytlsprofile"
[sasl.PLAINSS]
handshake-first=true
username="superuser"
password="superuserpassword"
[tls.mytlsprofile]
certfile="path/to/certfile/file/wildcard.jks"
keyfile="path/to/keyfile/file/wildcard.jks"
noverify=true
Hi, facing issue with prometheus metrics. We are just getting burrow_kafka_topic_partition_offset and no other metrics, where as ideally we should have got all of these "burrow_kafka_consumer_partition_lag", "burrow_kafka_consumer_current_offset", "burrow_kafka_consumer_status".
Any configurations that needs to be updated to get all the metrics.
We are using kafka version 0.11.0.3. and its a secured kafka cluster.
Thanks @pmbuko I checked that too and so tested with Burrow version 1.3.8 as well as 1.4.0 but no luck.
They all work fine with Kafka version 2.7.0 but fail with Kafka version 2.8.1.
I also created a ticket for burrow here linkedin/Burrow#737