Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SS] Update grafana graph to show snapshot data written to cache #8347

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
6 changes: 3 additions & 3 deletions tools/metrics/grafana/dashboards/workflow.json
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@
"type": "prometheus",
"uid": "vm"
},
"description": "After a copy-on-write snapshot has been used, the total count of bytes dirtied.",
"description": "The number of compressed snapshot bytes written to the cache. This will be 0 if the artifact was already cached.",
"fieldConfig": {
"defaults": {
"color": {
Expand Down Expand Up @@ -487,13 +487,13 @@
"uid": "vm"
},
"editorMode": "code",
"expr": "sum by (file_name) (rate(buildbuddy_firecracker_cow_snapshot_dirty_bytes[10m]))",
"expr": "sum by (file_name) (rate(buildbuddy_firecracker_snapshot_remote_cache_upload_size_bytes[10m]))",
"legendFormat": "__auto",
"range": true,
"refId": "A"
}
],
"title": "Dirty byte upload rate (10m window)",
"title": "Compressed snapshot bytes written (10m window)",
"type": "timeseries"
},
{
Expand Down