graphite-clickhouse icon indicating copy to clipboard operation
graphite-clickhouse copied to clipboard

Graphite cluster backend with ClickHouse support

Results 27 graphite-clickhouse issues
Sort by recently updated
recently updated
newest added

Is there a way to filter the metric name list so that I can exclude metrics that have not been inserted in the past few days? I can see in...

With the follwing blacklist: ``` target-blacklist = ["^carbon.*","^clickhouse.*"] ``` the metrics finder still shows that the blacklisted prefixes exist: ``` $ curl http://10.47.127.37:8081/metrics/find/?query='*' [{"allowChildren":1,"expandable":1,"leaf":0,"id":"clickhouse","text":"clickhouse","context":{}},{"allowChildren":1,"expandable":1,"leaf":0,"id":"carbon","text":"carbon","context":{}}] ``` although it hides their content...

Hi, it would be awesome if graphite-clickhouse could filter series based on an http header (or something similar). What I'm thinking about is basically: - pass X-GRAPHITE-CUSTOMER: 12345 in the...

Hi, it would be nice to have the option to blacklist all metrics and whitelist a few chosen ones. I might come up with a PR at some point, but...

This PR intends to fix two unintended (i believe) behaviors and adds two feature flags which affect what metrics are returned after filtering with seriesByTag. ## Changes that work without...

Not sure if my implementation is really ideal. Atm the querier.go of prometheus does not supprt filter support for metric and label searches. please review if what I do is...

Bumps google.golang.org/protobuf from 1.28.1 to 1.33.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/protobuf&package-manager=go_modules&previous-version=1.28.1&new-version=1.33.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

For _seriesByTag("name=up", "job=~us")_ will be used ```match(x, '^job=.*us')``` matcher which contradicts with https://github.com/graphite-project/graphite-web/blob/e058266f8afc293250ee32fd30e3bce4b7ab3579/webapp/graphite/render/functions.py#L5735 ``` INFO [render] query {"request_id": "8bc07b855d62a36520b072379955ff25", "carbonapi_uuid": "6c6fc662-5c65-4ab2-8d19-de96e5be708e", "query": "SELECT Path FROM db001_monitoring_stats.graphite_tagged WHERE ((Tag1='__name__=up') AND (arrayExists((x)...

``` extra-prefix = "extra" # curl -s 'http://127.0.0.1:19010/metrics/find?query=*' | jq . [ { "allowChildren": 1, "expandable": 1, "leaf": 0, "id": "extra", "text": "extra", "context": {} } ] # curl -s...