master
md 26 lines 560 Bytes
Rendered Raw
1 ## Use in collector configs
2
3 [[ entry.collector_configs.description ]]
4
5 [% if entry.collector_configs.format.description %]
6 [[ entry.collector_configs.format.description ]]
7 [% endif %]
8
9 ```text
10 [[ entry.collector_configs.format.syntax ]]
11 ```
12
13 [% for part in entry.collector_configs.format.parts.list %]
14 - `[[ part.name ]]`: [[ part.description ]]
15 [% endfor %]
16
17 ### Examples
18 [% for example in entry.collector_configs.examples.list %]
19 #### [[ example.name ]]
20
21 [[ example.description ]]
22
23 ```[[ example.language or 'yaml' ]]
24 [[ example.content ]]
25 ```
26 [% endfor %]