Skip to content

Commit 4e4e15f

Browse files
YuriKravetcvalyala
authored and
Andrii Chubatiuk
committed
Update docs (VictoriaMetrics#2566)
* deployment/docker: pass `-buildvs=false` to `go build` for production builds This should resolve the `error obtaining VCS status: exit status 128` error when the environment contains incorrect version of git or has incorrect access rights to the directory with VictoriaMetrics source code. See the following links for additional info: - VictoriaMetrics#2508 (comment) , - ko-build/ko#672 - golang/go#49004 * lib/netutil: limit the number of concurrently established connections when calling ConnPool.Get() This should reduce potential spikes in the number of established connections in the following cases: - when the connection establishing procedure becomes temporarily slow - after a temporary spike in the rate of ConnPool.Get() calls See VictoriaMetrics#2552 * docs/CHANGELOG.md: document c8af625 See VictoriaMetrics#1322 (comment) * docs/Cluster-VictoriaMetrics.md: typo fix: `by by` -> `by` * docs: add `resource usage limits` docs, which describe fine-grained tuning for various resource usage limits * docs/Cluster-VictoriaMetrics.md: the `/api/v1/label/.../values` query can take CPU and ram at both vmstorage and vmselect * Update root Readme and root vmagent readme Co-authored-by: Aliaksandr Valialkin <[email protected]>
1 parent dd05ebd commit 4e4e15f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1701,7 +1701,7 @@ Pass `-help` to VictoriaMetrics in order to see the list of supported command-li
17011701
-influxDBLabel string
17021702
Default label for the DB name sent over '?db={db_name}' query parameter (default "db")
17031703
-influxListenAddr string
1704-
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8189 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<victoriametrics>:8428/write
1704+
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8089 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<victoriametrics>:8428/write
17051705
-influxMeasurementFieldSeparator string
17061706
Separator for '{measurement}{separator}{field_name}' metric name when inserted via InfluxDB line protocol (default "_")
17071707
-influxSkipMeasurement

app/vmagent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ See the docs at https://docs.victoriametrics.com/vmagent.html .
765765
-influxDBLabel string
766766
Default label for the DB name sent over '?db={db_name}' query parameter (default "db")
767767
-influxListenAddr string
768-
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8189 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<vmagent>:8429/write
768+
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8089 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<vmagent>:8429/write
769769
-influxMeasurementFieldSeparator string
770770
Separator for '{measurement}{separator}{field_name}' metric name when inserted via InfluxDB line protocol (default "_")
771771
-influxSkipMeasurement

docs/Cluster-VictoriaMetrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ Below is the output for `/path/to/vminsert -help`:
563563
-influxDBLabel string
564564
Default label for the DB name sent over '?db={db_name}' query parameter (default "db")
565565
-influxListenAddr string
566-
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8189 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<victoriametrics>:8428/write
566+
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8089 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<victoriametrics>:8428/write
567567
-influxMeasurementFieldSeparator string
568568
Separator for '{measurement}{separator}{field_name}' metric name when inserted via InfluxDB line protocol (default "_")
569569
-influxSkipMeasurement

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1701,7 +1701,7 @@ Pass `-help` to VictoriaMetrics in order to see the list of supported command-li
17011701
-influxDBLabel string
17021702
Default label for the DB name sent over '?db={db_name}' query parameter (default "db")
17031703
-influxListenAddr string
1704-
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8189 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<victoriametrics>:8428/write
1704+
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8089 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<victoriametrics>:8428/write
17051705
-influxMeasurementFieldSeparator string
17061706
Separator for '{measurement}{separator}{field_name}' metric name when inserted via InfluxDB line protocol (default "_")
17071707
-influxSkipMeasurement

docs/Single-server-VictoriaMetrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1705,7 +1705,7 @@ Pass `-help` to VictoriaMetrics in order to see the list of supported command-li
17051705
-influxDBLabel string
17061706
Default label for the DB name sent over '?db={db_name}' query parameter (default "db")
17071707
-influxListenAddr string
1708-
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8189 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<victoriametrics>:8428/write
1708+
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8089 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<victoriametrics>:8428/write
17091709
-influxMeasurementFieldSeparator string
17101710
Separator for '{measurement}{separator}{field_name}' metric name when inserted via InfluxDB line protocol (default "_")
17111711
-influxSkipMeasurement

docs/vmagent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ See the docs at https://docs.victoriametrics.com/vmagent.html .
769769
-influxDBLabel string
770770
Default label for the DB name sent over '?db={db_name}' query parameter (default "db")
771771
-influxListenAddr string
772-
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8189 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<vmagent>:8429/write
772+
TCP and UDP address to listen for InfluxDB line protocol data. Usually :8089 must be set. Doesn't work if empty. This flag isn't needed when ingesting data over HTTP - just send it to http://<vmagent>:8429/write
773773
-influxMeasurementFieldSeparator string
774774
Separator for '{measurement}{separator}{field_name}' metric name when inserted via InfluxDB line protocol (default "_")
775775
-influxSkipMeasurement

0 commit comments

Comments
 (0)