I have Grafana 5.2 dashboards sourcing data from Prometheus.
I have some labels in a dashboard that seem to be in the format *.<domain> for e.g. *.google.com e.t.c however, this doesn't play with Grafana without some smart regex to ignore the first two characters.
I have the following regex (?<=^\*\.|^)[-a-zA-Z0-9._ ]+ which doesn't seem to work in Grafana but works in regex101. It should result in the label as google.com i.e. without the first two characters *..
Can someone please let me know what causes this ?

