master
md 147 lines 2.71 KB
Rendered Raw
1 [# Jinja template: integrations/templates/service_discovery.md
2 Renders the umbrella Service Discovery hub page (analog of templates/secrets.md).
3 #]
4 [[ page.title ]]
5
6 [% for paragraph in page.intro %]
7 [[ paragraph ]]
8
9 [% endfor %]
10 ### Jump To
11
12 [[ page.jump_to_line ]]
13
14
15 [[ page.how_it_works.heading ]]
16
17 [% for paragraph in page.how_it_works.intro %]
18 [[ paragraph ]]
19
20 [% endfor %]
21 [% for stage in page.how_it_works.stages %]
22 [[ loop.index ]]. **[[ stage.name ]]** — [[ stage.description ]]
23 [% endfor %]
24
25
26 [[ page.config_file.heading ]]
27
28 [% for paragraph in page.config_file.intro %]
29 [[ paragraph ]]
30
31 [% endfor %]
32 [[ page.config_file.skeleton ]]
33
34 [% for note in page.config_file.notes %]
35 - [[ note ]]
36 [% endfor %]
37
38
39 [[ page.rule_eval.heading ]]
40
41 [% for paragraph in page.rule_eval.intro %]
42 [[ paragraph ]]
43
44 [% endfor %]
45 [% for shape in page.rule_eval.shapes %]
46 - **[[ shape.name ]]** — [[ shape.description ]]
47 [% endfor %]
48
49 ### Order matters
50
51 [% for line in page.rule_eval.ordering %]
52 [[ line ]]
53 [% endfor %]
54
55
56 [[ page.helpers.heading ]]
57
58 [% for paragraph in page.helpers.intro %]
59 [[ paragraph ]]
60
61 [% endfor %]
62
63 [[ page.helpers.go_builtins.heading ]]
64
65 [[ page.helpers.go_builtins.intro ]]
66
67 | Construct | Description |
68 |:----------|:------------|
69 [% for row in page.helpers.go_builtins.table %]
70 | [[ row.name ]] | [[ row.description ]] |
71 [% endfor %]
72
73
74 [[ page.helpers.sprig.heading ]]
75
76 [[ page.helpers.sprig.intro ]]
77
78 | Function | Description |
79 |:---------|:------------|
80 [% for row in page.helpers.sprig.table %]
81 | [[ row.name ]] | [[ row.description ]] |
82 [% endfor %]
83
84 [[ page.helpers.sprig.outro ]]
85
86
87 [[ page.helpers.netdata.heading ]]
88
89 [[ page.helpers.netdata.intro ]]
90
91 [% for row in page.helpers.netdata.table %]
92 - [[ row.name ]] — [[ row.description ]]
93 [% if row.sub is defined %]
94 [% for sub in row.sub %]
95 - [[ sub ]]
96 [% endfor %]
97 [% endif %]
98 [% endfor %]
99
100 **Notes:**
101
102 [% for note in page.helpers.netdata.notes %]
103 - [[ note ]]
104 [% endfor %]
105
106
107 [[ page.config_template.heading ]]
108
109 [% for paragraph in page.config_template.intro %]
110 [[ paragraph ]]
111
112 [% endfor %]
113 [% for rule in page.config_template.rules %]
114 - **[[ rule.name ]]** — [[ rule.description ]]
115 [% endfor %]
116
117
118 [[ page.supported.heading ]]
119
120 [[ page.supported.intro ]]
121
122 | Discoverer | Kind | Stock conf | Discovers |
123 |:-----------|:-----|:-----------|:----------|
124 [% for d in discoverers %]
125 | [[ d.name_link ]] | `[[ d.kind ]]` | `[[ d.config_file ]]` | [[ d.tagline ]] |
126 [% endfor %]
127
128
129 [[ page.mixing.heading ]]
130
131 [% for paragraph in page.mixing.body %]
132 [[ paragraph ]]
133
134 [% endfor %]
135
136 [[ page.troubleshooting.heading ]]
137
138 [% for paragraph in page.troubleshooting.intro %]
139 [[ paragraph ]]
140
141 [% endfor %]
142 [% for item in page.troubleshooting.problems %]
143 ### [[ item.name ]]
144
145 [[ item.description ]]
146
147 [% endfor %]