Skip to content

Commit

Permalink
Merge pull request #129 from wei-lee/add-tag
Browse files Browse the repository at this point in the history
fix: add tags for some of the queries
  • Loading branch information
Wei Li authored Mar 13, 2019
2 parents 9b9a21f + dd3ab6b commit 8be14d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions roles/provision-keycloak-apb/files/keycloak-dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@
"tableColumn": "Value",
"targets": [
{
"expr": "max(jvm_memory_bytes_used{area=\"heap\"}) + max(jvm_memory_bytes_used{area=\"nonheap\"})",
"expr": "max(jvm_memory_bytes_used{area=\"heap\", kubernetes_name=\"keycloak\"}) + max(jvm_memory_bytes_used{area=\"nonheap\", kubernetes_name=\"keycloak\"})",
"format": "time_series",
"hide": false,
"instant": false,
Expand Down Expand Up @@ -606,22 +606,22 @@
"steppedLine": false,
"targets": [
{
"expr": "sum(jvm_memory_bytes_max)",
"expr": "sum(jvm_memory_bytes_max{kubernetes_name=\"keycloak\"})",
"format": "time_series",
"instant": false,
"intervalFactor": 1,
"legendFormat": "Max",
"refId": "A"
},
{
"expr": "sum(jvm_memory_bytes_committed)",
"expr": "sum(jvm_memory_bytes_committed{kubernetes_name=\"keycloak\"})",
"format": "time_series",
"intervalFactor": 1,
"legendFormat": "Comitted",
"refId": "C"
},
{
"expr": "sum(jvm_memory_bytes_used)",
"expr": "sum(jvm_memory_bytes_used{kubernetes_name=\"keycloak\"})",
"format": "time_series",
"instant": false,
"intervalFactor": 1,
Expand Down

0 comments on commit 8be14d1

Please sign in to comment.