diff --git a/docs/generated/metrics/metrics.html b/docs/generated/metrics/metrics.html index 6539bf87c290..518a4dfafa35 100644 --- a/docs/generated/metrics/metrics.html +++ b/docs/generated/metrics/metrics.html @@ -629,8 +629,6 @@ STORAGErpc.method.writebatch.recvNumber of WriteBatch requests processedRPCsCOUNTERCOUNTAVGNON_NEGATIVE_DERIVATIVE STORAGErpc.streams.mux_rangefeed.activeNumber of currently running MuxRangeFeed streamsStreamsGAUGECOUNTAVGNONE STORAGErpc.streams.mux_rangefeed.recvTotal number of MuxRangeFeed streamsStreamsCOUNTERCOUNTAVGNON_NEGATIVE_DERIVATIVE -STORAGErpc.streams.rangefeed.activeNumber of currently running RangeFeed streamsStreamsGAUGECOUNTAVGNONE -STORAGErpc.streams.rangefeed.recvTotal number of RangeFeed streamsStreamsCOUNTERCOUNTAVGNON_NEGATIVE_DERIVATIVE STORAGEspanconfig.kvsubscriber.oldest_protected_record_nanosDifference between the current time and the oldest protected timestamp (sudden drops indicate a record being released; an ever increasing number indicates that the oldest record is around and preventing GC if > configured GC TTL)NanosecondsGAUGENANOSECONDSAVGNONE STORAGEspanconfig.kvsubscriber.protected_record_countNumber of protected timestamp records, as seen by KVRecordsGAUGECOUNTAVGNONE STORAGEspanconfig.kvsubscriber.update_behind_nanosDifference between the current time and when the KVSubscriber received its last update (an ever increasing number indicates that we're no longer receiving updates)NanosecondsGAUGENANOSECONDSAVGNONE diff --git a/pkg/server/node.go b/pkg/server/node.go index 7021625a552b..3466d7c90516 100644 --- a/pkg/server/node.go +++ b/pkg/server/node.go @@ -191,18 +191,6 @@ This metric is thus not an indicator of KV health.`, Measurement: "Bytes", Unit: metric.Unit_BYTES, } - metaActiveRangeFeed = metric.Metadata{ - Name: "rpc.streams.rangefeed.active", - Help: `Number of currently running RangeFeed streams`, - Measurement: "Streams", - Unit: metric.Unit_COUNT, - } - metaTotalRangeFeed = metric.Metadata{ - Name: "rpc.streams.rangefeed.recv", - Help: `Total number of RangeFeed streams`, - Measurement: "Streams", - Unit: metric.Unit_COUNT, - } metaActiveMuxRangeFeed = metric.Metadata{ Name: "rpc.streams.mux_rangefeed.active", Help: `Number of currently running MuxRangeFeed streams`, @@ -270,8 +258,6 @@ type nodeMetrics struct { CrossRegionBatchResponseBytes *metric.Counter CrossZoneBatchRequestBytes *metric.Counter CrossZoneBatchResponseBytes *metric.Counter - NumRangeFeed *metric.Counter - ActiveRangeFeed *metric.Gauge NumMuxRangeFeed *metric.Counter ActiveMuxRangeFeed *metric.Gauge } @@ -293,8 +279,6 @@ func makeNodeMetrics(reg *metric.Registry, histogramWindow time.Duration) nodeMe CrossRegionBatchResponseBytes: metric.NewCounter(metaCrossRegionBatchResponse), CrossZoneBatchRequestBytes: metric.NewCounter(metaCrossZoneBatchRequest), CrossZoneBatchResponseBytes: metric.NewCounter(metaCrossZoneBatchResponse), - ActiveRangeFeed: metric.NewGauge(metaActiveRangeFeed), - NumRangeFeed: metric.NewCounter(metaTotalRangeFeed), ActiveMuxRangeFeed: metric.NewGauge(metaActiveMuxRangeFeed), NumMuxRangeFeed: metric.NewCounter(metaTotalMuxRangeFeed), }