Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions cockroachdb_dedicated/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
# CHANGELOG - CockroachDB Dedicated

## 1.0.0
## 2.1.0 / 2025-11-06

***Added***:

* Versioning existing release.
* KV and storage metrics: `storage_wal_fsync_latency`,
`rebalancing_replicas_queriespersecond`, `range_merges`,
`rebalancing_lease_transfers`, `rebalancing_range_rebalances`

## 2.0.0 / 2022-08-16

***Added***:

* Limited preview dashboard for serverless.

## 2.0.0
## 1.0.0 / 2022-05-24

***Added***:

* Limited preview dashboard for serverless.
* Versioning existing release.
5 changes: 5 additions & 0 deletions cockroachdb_dedicated/metadata.csv
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We recently added a sample_tags column. If the integration is providing tags by default , please add them in this column. See https://docs.datadoghq.com/developers/integrations/check_references/#metrics-metadata-file.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dd-dominic I don't know offhand if the integration is providing these tags. Since it's listed as an optional attribute in the documentation, could we add that info in a followup PR? I'd love to get these storage metrics documented and then do more of the metadata/housekeeping stuff separately if that's possible. Please let me know what you think!

Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ crdb_dedicated.raft.ticks,count,,unit,,cockroachdb_dedicated,Number of Raft tick
crdb_dedicated.raftlog.behind,gauge,,unit,,cockroachdb_dedicated,Number of Raft log entries followers on other stores are behind. Shown as entry,0,,
crdb_dedicated.raftlog.truncated,count,,unit,,cockroachdb_dedicated,Number of Raft log entries truncated. Shown as entry,0,,
crdb_dedicated.range.adds,count,,unit,,cockroachdb_dedicated,Number of range additions,0,,
crdb_dedicated.range.merges,count,,unit,,cockroachdb_dedicated,Number of range merges,0,,
crdb_dedicated.range.raftleadertransfers,count,,unit,,cockroachdb_dedicated,Number of raft leader transfers,0,,
crdb_dedicated.range.removes,count,,unit,,cockroachdb_dedicated,Number of range removals,0,,
crdb_dedicated.range.snapshots.generated,count,,unit,,cockroachdb_dedicated,Number of generated snapshots,0,,
Expand All @@ -141,6 +142,9 @@ crdb_dedicated.ranges,gauge,,unit,,cockroachdb_dedicated,Number of ranges,0,,
crdb_dedicated.ranges.overreplicated,gauge,,unit,,cockroachdb_dedicated,Number of ranges with more live replicas than the replication target,0,,
crdb_dedicated.ranges.unavailable,gauge,,unit,,cockroachdb_dedicated,Number of ranges with fewer live replicas than needed for quorum,0,,
crdb_dedicated.ranges.underreplicated,gauge,,unit,,cockroachdb_dedicated,Number of ranges with fewer live replicas than the replication target,0,,
crdb_dedicated.rebalancing.lease.transfers,count,,unit,,cockroachdb_dedicated,Number of lease transfers motivated by store-level load imbalances,0,,
crdb_dedicated.rebalancing.range.rebalances,count,,unit,,cockroachdb_dedicated,Number of range rebalance operations motivated by store-level load imbalances,0,,
crdb_dedicated.rebalancing.replicas.queriespersecond,gauge,,unit,,cockroachdb_dedicated,Histogram of average kv-level requests received per second by replicas on the store in the last 30 minutes,0,,
crdb_dedicated.rebalancing.writespersecond,gauge,,unit,,cockroachdb_dedicated,"Number of keys written i.e. applied by raft per second to the store, averaged over a large time period as used in rebalancing decisions. Shown as key",0,,
crdb_dedicated.replicas,gauge,,unit,,cockroachdb_dedicated,Number of replicas,0,,
crdb_dedicated.replicas.leaders,gauge,,unit,,cockroachdb_dedicated,Number of raft leaders,0,,
Expand All @@ -165,6 +169,7 @@ crdb_dedicated.rocksdb.num_sstables,gauge,,table,,cockroachdb_dedicated,Number o
crdb_dedicated.rocksdb.read.amplification,gauge,,read,,cockroachdb_dedicated,Number of disk reads per query. Shown as read,0,,
crdb_dedicated.rocksdb.table.readers.mem.estimate,gauge,,unit,,cockroachdb_dedicated,Memory used by index and filter blocks,0,,
crdb_dedicated.round_trip.latency,count,,nanosecond,,cockroachdb_dedicated,Distribution of round-trip latencies with other nodes in nanoseconds. Shown as nanosecond,0,,
crdb_dedicated.storage.wal.fsync.latency,gauge,,unit,,cockroachdb_dedicated,The write ahead log fsync latency,0,,
crdb_dedicated.sql.bytesin,count,,byte,,cockroachdb_dedicated,Number of sql bytes received. Shown as byte,0,,
crdb_dedicated.sql.bytesout,count,,byte,,cockroachdb_dedicated,Number of sql bytes sent. Shown as byte,0,,
crdb_dedicated.sql.conn.latency,count,,nanosecond,,cockroachdb_dedicated,Latency to establish and authenticate a SQL connection. Shown as nanoseconds.,0,,
Expand Down
Loading