forked from grafana/grafonnet-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelasticsearch.libsonnet
51 lines (51 loc) · 1.02 KB
/
elasticsearch.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
42
43
44
45
46
47
48
49
50
51
{
/**
* Creates an [Elasticsearch target](https://grafana.com/docs/grafana/latest/features/datasources/elasticsearch/)
*
* @name elasticsearch.target
*
* @param query
* @param timeField
* @param id (optional)
* @param datasource (optional)
* @param metrics (optional)
* @param bucketAggs (optional)
* @param alias (optional)
*/
target(
query,
timeField,
id=null,
datasource=null,
metrics=[{
field: 'value',
id: null,
type: 'percentiles',
settings: {
percents: [
'90',
],
},
}],
bucketAggs=[{
field: 'timestamp',
id: null,
type: 'date_histogram',
settings: {
interval: '1s',
min_doc_count: 0,
trimEdges: 0,
},
}],
alias=null,
):: {
[if datasource != null then 'datasource']: datasource,
query: query,
id: id,
timeField: timeField,
bucketAggs: bucketAggs,
metrics: metrics,
alias: alias,
// TODO: generate bucket ids
},
}