Hi,
I have created a grafana template varaible to extract names of organizations from Prometheus db using query
label_values(custom_message_volume_endpoint_organization_total,Organization).
This yields organization names that have spaces in some cases .. For example
OrgA
OrgB product1
OrgC product2
I use the following query to extract the timeseries corresponding to an organization..
custom_latency_endpoint_organization_total{job="MyJob",Organization=~"$Organization"}
It only works when I select the variable value OrgA but doesn't work for the other 2 . Apparently any organization name having space is discarded.
Is there a workaround to get around this ?
Thanks
Debashish