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 @@
STORAGE | rpc.method.writebatch.recv | Number of WriteBatch requests processed | RPCs | COUNTER | COUNT | AVG | NON_NEGATIVE_DERIVATIVE |
STORAGE | rpc.streams.mux_rangefeed.active | Number of currently running MuxRangeFeed streams | Streams | GAUGE | COUNT | AVG | NONE |
STORAGE | rpc.streams.mux_rangefeed.recv | Total number of MuxRangeFeed streams | Streams | COUNTER | COUNT | AVG | NON_NEGATIVE_DERIVATIVE |
-STORAGE | rpc.streams.rangefeed.active | Number of currently running RangeFeed streams | Streams | GAUGE | COUNT | AVG | NONE |
-STORAGE | rpc.streams.rangefeed.recv | Total number of RangeFeed streams | Streams | COUNTER | COUNT | AVG | NON_NEGATIVE_DERIVATIVE |
STORAGE | spanconfig.kvsubscriber.oldest_protected_record_nanos | Difference 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) | Nanoseconds | GAUGE | NANOSECONDS | AVG | NONE |
STORAGE | spanconfig.kvsubscriber.protected_record_count | Number of protected timestamp records, as seen by KV | Records | GAUGE | COUNT | AVG | NONE |
STORAGE | spanconfig.kvsubscriber.update_behind_nanos | Difference between the current time and when the KVSubscriber received its last update (an ever increasing number indicates that we're no longer receiving updates) | Nanoseconds | GAUGE | NANOSECONDS | AVG | NONE |
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),
}