You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pushgateway encodes grouping label keys and values as URL path segments. Those values may be blank, but URL path segments may not be blank. To get around this, pushgateway requires that empty values be encoded as the character '='.
This project doesn't do this and leaves the value blank, so if you have a label with a name like "label1" and a blank value, you get a request path like this: /metrics/job/label1//label2/bla. That's not a valid request path, or worse, it is, but it's equivalent to /metrics/job/label1/label2/bla, which doesn't work.
The text was updated successfully, but these errors were encountered:
Pushgateway encodes grouping label keys and values as URL path segments. Those values may be blank, but URL path segments may not be blank. To get around this, pushgateway requires that empty values be encoded as the character '='.
See https://github.com/prometheus/pushgateway#url for details.
This project doesn't do this and leaves the value blank, so if you have a label with a name like "label1" and a blank value, you get a request path like this:
/metrics/job/label1//label2/bla
. That's not a valid request path, or worse, it is, but it's equivalent to/metrics/job/label1/label2/bla
, which doesn't work.The text was updated successfully, but these errors were encountered: