forked from grafana/grafonnet-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloudwatch.libsonnet
41 lines (39 loc) · 948 Bytes
/
cloudwatch.libsonnet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
/**
* Creates a [CloudWatch target](https://grafana.com/docs/grafana/latest/features/datasources/cloudwatch/)
*
* @name cloudwatch.target
*
* @param region
* @param namespace
* @param metric
* @param datasource (optional)
* @param statistic (default: `'Average'`)
* @param alias (optional)
* @param highResolution (default: `false`)
* @param period (default: `'1m'`)
* @param dimensions (optional)
* @return Panel target
*/
target(
region,
namespace,
metric,
datasource=null,
statistic='Average',
alias=null,
highResolution=false,
period='1m',
dimensions={}
):: {
region: region,
namespace: namespace,
metricName: metric,
[if datasource != null then 'datasource']: datasource,
statistics: [statistic],
[if alias != null then 'alias']: alias,
highResolution: highResolution,
period: period,
dimensions: dimensions,
},
}