Skip to content
Open
Changes from all 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
27 changes: 27 additions & 0 deletions oximeter/oximeter/schema/virtual-disk.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,33 @@ versions = [
{ added_in = 1, fields = [ "failure_reason" ] }
]

[[metrics]]
name = "bytes_discarded"
description = "Number of bytes discarded from the disk"
units = "bytes"
datum_type = "cumulative_u64"
versions = [
{ added_in = 1, fields = [] }
]

[[metrics]]
name = "discards"
description = "Total number of discard operations to the disk"
units = "count"
datum_type = "cumulative_u64"
versions = [
{ added_in = 1, fields = [] }
]

[[metrics]]
name = "failed_discards"
description = "Total number of failed discard operations to the disk"
units = "count"
datum_type = "cumulative_u64"
versions = [
{ added_in = 1, fields = [ "failure_reason" ] }
]

[[metrics]]
name = "flushes"
description = "Total number of flush operations on the disk"
Expand Down
Loading