diff --git a/docs/README.md b/docs/README.md index c55284b31..9f30f7139 100644 --- a/docs/README.md +++ b/docs/README.md @@ -617,13 +617,13 @@ VictoriaMetrics performs the following transformations to the ingested InfluxDB For example, the following InfluxDB line: -```raw +```influxtextmetric foo,tag1=value1,tag2=value2 field1=12,field2=40 ``` is converted into the following Prometheus data points: -```raw +```promtextmetric foo_field1{tag1="value1", tag2="value2"} 12 foo_field2{tag1="value1", tag2="value2"} 40 ``` diff --git a/docs/Single-server-VictoriaMetrics.md b/docs/Single-server-VictoriaMetrics.md index 344430607..70490f797 100644 --- a/docs/Single-server-VictoriaMetrics.md +++ b/docs/Single-server-VictoriaMetrics.md @@ -625,13 +625,13 @@ VictoriaMetrics performs the following transformations to the ingested InfluxDB For example, the following InfluxDB line: -```raw +```influxtextmetric foo,tag1=value1,tag2=value2 field1=12,field2=40 ``` is converted into the following Prometheus data points: -```raw +```promtextmetric foo_field1{tag1="value1", tag2="value2"} 12 foo_field2{tag1="value1", tag2="value2"} 40 ``` diff --git a/docs/stream-aggregation.md b/docs/stream-aggregation.md index 9d57c5cfe..a3d3e1029 100644 --- a/docs/stream-aggregation.md +++ b/docs/stream-aggregation.md @@ -1032,7 +1032,7 @@ specified individually per each `-remoteWrite.url`: # match also can contain a list of series selectors. Then the incoming samples are aggregated # if they match at least a single series selector. # -- match: 'http_request_duration_seconds_bucket{env=~"prod|staging"}' + match: 'http_request_duration_seconds_bucket{env=~"prod|staging"}' # interval is the interval for the aggregation. # The aggregated stats is sent to remote storage once per interval.