36 lines
811 B
Text
36 lines
811 B
Text
|
# vi: ft=yaml
|
||
|
apiVersion: 1
|
||
|
|
||
|
datasources:
|
||
|
- name: cpu
|
||
|
type: elasticsearch
|
||
|
access: proxy
|
||
|
url: http://maestro.dmz:{{ elasticsearch_port }}
|
||
|
jsonData:
|
||
|
index: 'fluentd.cpu-*'
|
||
|
timeField: '@timestamp'
|
||
|
|
||
|
- name: memory
|
||
|
type: elasticsearch
|
||
|
access: proxy
|
||
|
url: http://maestro.dmz:{{ elasticsearch_port }}
|
||
|
jsonData:
|
||
|
index: 'fluentd.memory-*'
|
||
|
timeField: '@timestamp'
|
||
|
|
||
|
- name: diskfree
|
||
|
type: elasticsearch
|
||
|
access: proxy
|
||
|
url: http://maestro.dmz:{{ elasticsearch_port }}
|
||
|
jsonData:
|
||
|
index: 'fluentd.diskfree-*'
|
||
|
timeField: '@timestamp'
|
||
|
|
||
|
- name: traefik_access
|
||
|
type: elasticsearch
|
||
|
access: proxy
|
||
|
url: http://maestro.dmz:{{ elasticsearch_port }}
|
||
|
jsonData:
|
||
|
index: 'fluentd.access.traefik-*'
|
||
|
timeField: '@timestamp'
|