VictoriaMetrics / victoriametrics-datasource

Grafana datasource for VictoriaMetrics
GNU Affero General Public License v3.0
111 stars 14 forks source link

Fix escaping in metrics browser selection #225

Closed Loori-R closed 3 days ago

Loori-R commented 5 days ago

Excessive escaping of characters when selecting metrics in Metrics Browser has been fixed.

The queries contained unnecessary escape characters. For example, when selecting the label bios_date with the value 09/13/2024, the query was formed as {bios_date\="09\/13\/2024"}, which led to errors. Now the queries are correctly formed as {bios_date="09/13/2024"}.

Related issue: #214