We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b7a641 commit 7e6a855Copy full SHA for 7e6a855
mixin/dashboards/rds.libsonnet
@@ -102,11 +102,26 @@ grafana.dashboard.new(
102
),
103
104
105
+ grafana.panel.graph.new(
106
+ title='Database connections average',
107
+ datasource='$datasource',
108
+ )
109
+ .setGridPos(w=12, h=8)
110
+ .addYaxis(min=0)
111
+ .addYaxis()
112
+ .addTarget(
113
+ grafana.target.prometheus.new(
114
+ expr='aws_rds_database_connections_average{%s}' % [allLabels],
115
+ legendFormat='{{dimension_DBInstanceIdentifier}}',
116
117
+ ),
118
119
+
120
grafana.panel.graph.new(
121
title='Database connections count',
122
datasource='$datasource',
123
)
- .setGridPos(w=24, h=8)
124
+ .setGridPos(w=12, h=8, x=12)
125
.addYaxis(min=0)
126
.addYaxis()
127
.addTarget(
0 commit comments