-
Notifications
You must be signed in to change notification settings - Fork 23
Description
I know Booking was stuck on graphite-web 0.9.x for a long time. Have you upgraded to 1.1.x?
I ask, because while using this fork's carbonapi/carbonzipper as the CLUSTER_SERVERS
for graphite-web-1.1.8, I'm not able to make any queries with globs work.
Setup:
carbonapi
listening onlocalhost:8082
carbonzipper
listening onlocalhost:8081
In graphite-web
's local_settings.py
# ------------------------------------------------------------------------
# Connect to the local carbonapi endpoint
# ------------------------------------------------------------------------
CLUSTER_SERVERS = ["127.0.0.1:8081"]
INTRACLUSTER_HTTPS = False
REMOTE_FETCH_TIMEOUT = 90.0
REMOTE_FIND_TIMEOUT = 30.0
REMOTE_RETRY_DELAY = 30
REMOTE_EXCLUDE_LOCAL = False
REMOTE_STORE_MERGE_RESULTS = False
Regardless whether this is set to 8081 (zipper) or 8082 (carbonapi), I'm able to resolve find
calls, and fully qualified render targets (i.e., foo.bar.baz), but any target with a glob in it is ignored.
Like if I call /render/?format=json&target=foo.bar.baz&target=foo.*.*
I get back
[
{
"target": "foo.bar.baz",
"tags": { ... },
"datapoints": [ .. ]
}
]
But if I query find for foo.*.*
I get all the results I expect.
I've tried this with graphite09compat: true|false
in zipper and sendGlobsAsIs: true|false
in api, and every permutation thereof.