Skip to content

Commit

Permalink
chore(monitor): filter by pod in latency panels
Browse files Browse the repository at this point in the history
  • Loading branch information
deepthidevaki committed Dec 14, 2020
1 parent 82b2cc2 commit 05dc428
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions monitor/grafana/zeebe.json
Original file line number Diff line number Diff line change
Expand Up @@ -4667,7 +4667,7 @@
"reverseYBuckets": false,
"targets": [
{
"expr": "sum(increase(zeebe_stream_processor_latency_bucket{namespace=~\"$namespace\",partition=~\"$partition\", recordType=\"COMMAND\"}[30s])) by (le)",
"expr": "sum(increase(zeebe_stream_processor_latency_bucket{namespace=~\"$namespace\",partition=~\"$partition\",pod=~\"$pod\",recordType=\"COMMAND\"}[30s])) by (le)",
"format": "heatmap",
"interval": "30s",
"intervalFactor": 1,
Expand Down Expand Up @@ -4731,7 +4731,7 @@
"reverseYBuckets": false,
"targets": [
{
"expr": "sum(increase(zeebe_stream_processor_latency_bucket{namespace=~\"$namespace\",partition=~\"$partition\", recordType=\"EVENT\"}[30s])) by (le)",
"expr": "sum(increase(zeebe_stream_processor_latency_bucket{namespace=~\"$namespace\",partition=~\"$partition\",pod=~\"$pod\", recordType=\"EVENT\"}[30s])) by (le)",
"format": "heatmap",
"interval": "30s",
"intervalFactor": 1,
Expand Down Expand Up @@ -4795,7 +4795,7 @@
"reverseYBuckets": false,
"targets": [
{
"expr": "sum(increase(zeebe_workflow_instance_execution_time_bucket{namespace=~\"$namespace\",partition=~\"$partition\"}[30s])) by (le)",
"expr": "sum(increase(zeebe_workflow_instance_execution_time_bucket{namespace=~\"$namespace\",partition=~\"$partition\",pod=~\"$pod\"}[30s])) by (le)",
"format": "heatmap",
"interval": "30s",
"intervalFactor": 1,
Expand Down Expand Up @@ -5087,7 +5087,7 @@
"reverseYBuckets": false,
"targets": [
{
"expr": "sum(increase(zeebe_stream_processor_processing_duration_bucket{namespace=~\"$namespace\",partition=~\"$partition\"}[30s])) by (le)",
"expr": "sum(increase(zeebe_stream_processor_processing_duration_bucket{namespace=~\"$namespace\",partition=~\"$partition\",pod=~\"$pod\"}[30s])) by (le)",
"format": "heatmap",
"interval": "30s",
"intervalFactor": 1,
Expand Down Expand Up @@ -5151,7 +5151,7 @@
"reverseYBuckets": false,
"targets": [
{
"expr": "sum(increase(zeebe_log_appender_append_latency_bucket{namespace=~\"$namespace\",partition=~\"$partition\"}[30s])) by (le)",
"expr": "sum(increase(zeebe_log_appender_append_latency_bucket{namespace=~\"$namespace\",partition=~\"$partition\",pod=~\"$pod\"}[30s])) by (le)",
"format": "heatmap",
"interval": "30s",
"intervalFactor": 1,
Expand Down Expand Up @@ -5215,7 +5215,7 @@
"reverseYBuckets": false,
"targets": [
{
"expr": "sum(increase(zeebe_log_appender_commit_latency_bucket{namespace=~\"$namespace\",partition=~\"$partition\"}[30s])) by (le)",
"expr": "sum(increase(zeebe_log_appender_commit_latency_bucket{namespace=~\"$namespace\",partition=~\"$partition\",pod=~\"$pod\"}[30s])) by (le)",
"format": "heatmap",
"interval": "30s",
"intervalFactor": 1,
Expand Down

0 comments on commit 05dc428

Please sign in to comment.