File tree 1 file changed +21
-2
lines changed
1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -65,10 +65,10 @@ grafana.dashboard.new(
65
65
.setGridPos(w=24 , h=3 ),
66
66
67
67
grafana.panel.graph.new(
68
- title='CPU utilization' ,
68
+ title='CPU utilization average ' ,
69
69
datasource='$datasource' ,
70
70
)
71
- .setGridPos(w=24 , h=8 )
71
+ .setGridPos(w=12 , h=8 )
72
72
.addYaxis(
73
73
format='percent' ,
74
74
max=100 ,
@@ -83,6 +83,25 @@ grafana.dashboard.new(
83
83
),
84
84
),
85
85
86
+ grafana.panel.graph.new(
87
+ title='CPU utilization maximum' ,
88
+ datasource='$datasource' ,
89
+ )
90
+ .setGridPos(w=12 , h=8 , x=12 )
91
+ .addYaxis(
92
+ format='percent' ,
93
+ max=100 ,
94
+ min=0 ,
95
+ )
96
+ .addYaxis()
97
+ .addTarget(
98
+ grafana.target.prometheus.new(
99
+ expr='aws_rds_cpuutilization_maximum{%s}' % [allLabels],
100
+ legendFormat='{{dimension_DBInstanceIdentifier}}' ,
101
+ datasource='$datasource' ,
102
+ ),
103
+ ),
104
+
86
105
grafana.panel.graph.new(
87
106
title='Database connections count' ,
88
107
datasource='$datasource' ,
You can’t perform that action at this time.
0 commit comments