Skip to content

Commit

Permalink
scylla-detailed add bloom filter percentage graph scylladb#2219
Browse files Browse the repository at this point in the history
  • Loading branch information
amnonh committed Mar 13, 2024
1 parent a6a8ae0 commit 7d767d1
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions grafana/scylla-detailed.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -1788,7 +1788,7 @@
"panels": [
{
"class": "bytes_panel",
"span": 6,
"span": 4,
"targets": [
{
"expr": "$func(scylla_lsa_total_space_bytes{instance=~\"[[node]]\",cluster=\"$cluster\", dc=~\"$dc\", shard=~\"[[shard]]\"}) by ([[by]])",
Expand All @@ -1803,7 +1803,7 @@
},
{
"class": "bytes_panel",
"span": 6,
"span": 4,
"targets": [
{
"expr": "$func(scylla_lsa_non_lsa_used_space_bytes{instance=~\"[[node]]\",cluster=\"$cluster\", dc=~\"$dc\", shard=~\"[[shard]]\"}) by ([[by]])",
Expand All @@ -1815,6 +1815,21 @@
],
"description": "scylla_lsa_non_lsa_used_space_bytes",
"title": "Non-LSA used memory"
},
{
"class": "percentunit_panel",
"span": 4,
"targets": [
{
"expr": "$func(scylla_sstables_bloom_filter_memory_size{instance=~\"[[node]]\",cluster=\"$cluster\", dc=~\"$dc\", shard=~\"[[shard]]\"}) by ([[by]])/$func(scylla_memory_total_memory{instance=~\"[[node]]\",cluster=\"$cluster\", dc=~\"$dc\", shard=~\"[[shard]]\"}) by ([[by]])",
"intervalFactor": 1,
"legendFormat": "",
"refId": "A",
"step": 1
}
],
"description": "Bloom filter should take a small percentage of the total memory.\n\nscylla_sstables_bloom_filter_memory_size",
"title": "Bloom Filter memory usage (percentage)"
}
],
"title": "New row"
Expand Down

0 comments on commit 7d767d1

Please # to comment.