From cb9df9baf7423464ba80b1b7e0ae8ad92089ee20 Mon Sep 17 00:00:00 2001 From: pierwill Date: Thu, 8 Oct 2020 14:39:23 -0700 Subject: [PATCH] Document debug vars `valuesWrittenOK` and `pointsWrittenOK` --- .../influxdata-platform/tools/measurements-internal.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/content/platform/monitoring/influxdata-platform/tools/measurements-internal.md b/content/platform/monitoring/influxdata-platform/tools/measurements-internal.md index 11163b847..5932e591f 100644 --- a/content/platform/monitoring/influxdata-platform/tools/measurements-internal.md +++ b/content/platform/monitoring/influxdata-platform/tools/measurements-internal.md @@ -228,9 +228,11 @@ to visualize InfluxDB `_internal` metrics. - [pointReqHH](#pointreqhh-enterprise-only) (Enterprise only) - [pointReqLocal](#pointreqlocal-enterprise-only) (Enterprise only) - [pointReqRemote](#pointreqremote-enterprise-only) (Enterprise only) + - [pointsWrittenOK](#pointsWrittenOK) - [req](#req) - [subWriteDrop](#subwritedrop) - [subWriteOk](#subwriteok) + - [valuesWrittenOK](#valuesWrittenOK) - [writeDrop](#writedrop) - [writeError](#writeerror) - [writeOk](#writeok) @@ -963,6 +965,9 @@ Then if the write attempt fails, we check again if HH exists, and if so, add the This statistic does not distinguish between requests that are directly written to the destination node versus enqueued into the hinted handoff queue for the destination node. +#### pointsWrittenOK +Number of points written to the HTTP `/write` endpoint and persisted successfully. + #### req The total number of batches of points requested to be written to this node. @@ -972,6 +977,9 @@ The total number of batches of points that failed to be sent to the subscription #### subWriteOk The total number of batches of points that were successfully sent to the subscription dispatcher. +#### valuesWrittenOK +Number of values (fields) written to the HTTP `/write` endpoint and persisted successfully. + #### writeDrop The total number of write requests for points that have been dropped due to timestamps not matching any existing retention policies.