Adam Zegelin

Results 29 comments of Adam Zegelin

Hi @TvdW, I haven't started work on this yet. We'd be grateful if you were willing to contribute your patch.

Yes, support for multiple newer & older versions of Cassandra is pretty much non-existent at this point. We've been working on building a test framework that lets us verify that...

Check out `TextFormatMetricFormatWriter`: We could filter all of them here: ``` summary.quantiles.forEach(interval -> { writeMetric(buffer, metricFamily, null, interval.value, summary.labels, interval.quantile.asSummaryLabel()); }); ```

This looks pretty good. Thanks. For adherence to the Prometheus text format exposition format I'd prefer to keep the `quantile` labels on Summaries as floats, and instead export the `min`,...

The exporter supports ssl. See the `--ssl` CLI option, and its counterparts. Have a look at the [Options](https://github.com/instaclustr/cassandra-exporter#options) section of the README. If you're encountering an error when trying to...

@serban21 Thanks for the PR. I'll have to give some more thought to this before I merge it. I made some changes late last year to explicitly exclude `read` and...

Sounds reasonable. Some thought will need to be given to how multiple C* versions are supported going forward. I'd like to avoid peppering the code with version tests, where possible.

Would this be a per-metric option? i.e, for histogram X, export the 75th and 99th percentiles, but for histogram Y, export everything? Adding a global option to only export select...

Right now there is no code path or infrastructure in place to filter metrics based on labels. Currently, filtering is done at "registration time", which is when the exporter is...

Can't see why not. Though I was always under the impression that Maven Central was for libraries (Guava, Guice, etc) rather than apps. Can you expand on the use case...