Gasparina Damien
Gasparina Damien
Hello! Indeed, there are a few limits regarding the Metrics API, including a limit of 50 requests/minute per IP. The exporter is actually doing one query per metric for each...
So many queries, would you mind sharing your configuration? Just to see if it can be improved :)
The time setting should be on the Prometheus configuration (scrape_interval). The exporter is doing one query per metric per scrape. With your configuration @vinay-nadig-0042 , you shouldn't reach the limit...
Hi @kcyea , somehow I am not able to reproduce locally this issue. If I recall properly, Confluent Cloud changed the root CA recently, this change might have impacted some...
By quickly looking at the TLS certificates bundled with the exporter, it looks valid. It includes ` Subject: C = US, O = Amazon, CN = Amazon Root CA 1`...
I am not sure why the docker build failed (I assume because `$(git rev-parse --short HEAD)` failed). Could you share the output of the `openssl s_client -connect api.telemetry.confluent.cloud:443`?
Hi, the problem is that there is a proxy between the exporter and the Metrics API endpoint. As the certificate used by the proxy is not trusted by the exporter,...
Yeah, you would need to do a `docker build -t dabz/ccloudexporter:latest .` (or equivalent)
oh yeah, goland is failing to download dependencies due to the same x509 issue. I am not sure how to bypass this issue . Maybe try adding the certificate BEFORE...
It looks like golang is fetching TLS trusted certs from: https://stackoverflow.com/questions/40051213/where-is-golang-picking-up-root-cas-from . You could also build your image in a non-proxy environment then export/import it to your env