Aliaksandr Valialkin
Aliaksandr Valialkin
VictoriaMetrics accepts data via [various data ingestion protocols](https://docs.victoriametrics.com/#how-to-import-time-series-data) including [InfluxDB line protocol](https://docs.victoriametrics.com/#how-to-send-data-from-influxdb-compatible-agents-such-as-telegraf). The InfluxDB line protocol [allows ingesting data with almost any chars in metric names, tag names, field names...
The commit fcffdba9dcbc6a696d328cc8f4268349d54218e3 adds `-usePromCompatibleNaming` command-line flag to `vmagent`, `vminsert` and single-node VictoriaMetrics. This flag can be used for [Prometheus-compatible normalizing](https://prometheus.io/docs/concepts/data_model/#metric-names-and-labels) of all the metrics and labels ingested via [all...
VictoriaMetrics and vmagent support `-usePromCompatibleNaming` command-line flag starting from [v1.82.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases). Closing the feature request as done.
@Howie59 , try trace the heavy query either via [vmui](https://docs.victoriametrics.com/#vmui) or via [http api](https://docs.victoriametrics.com/#query-tracing). The trace will show query processing places where the query spends the most time. It is...
@hagen1778 , what about exposing the automatically generated `alertname` label during templating, and overriding it with non-empty `alertname` label received from the alert? This will improve experience for users expecting...
Extra labels are available in annotation templating starting from [v1.82.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases). Closing this issue as fixed then.
@isodude , thanks for the proposed pull request, which allows passing tags with whitespaces via [Graphite data ingestion protocol](https://docs.victoriametrics.com/#how-to-send-data-from-graphite-compatible-agents-such-as-statsd)! I used slightly different approach in the commit 41f8c2987ddc04bf1bf619937c72ac9dd7af68a9 , which...
FYI, this issue has been fixed starting from [vmalert v1.82.1](https://github.com/VictoriaMetrics/VictoriaMetrics/releases).
@denisgolius , thanks for the pull request!
VictoriaMetrics architecture has been designed with the assumption that timestamps for the ingested samples shouldn't go too far in the future. That's why there could be unexpected issues after removing...