summaryrefslogtreecommitdiffstats
path: root/integrations/schemas/shared.json
blob: 5aa926c3f344b9ca65bc326e51649c63b1aab628 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Shared definitions used for all integrations schemas.",
  "$defs": {
    "id": {
      "type": "string",
      "minLength": 1,
      "description": "A unique ID for the item. Must be URL safe."
    },
    "instance": {
      "type": "object",
      "description": "Information about the integration instance.",
      "properties": {
        "name": {
          "description": "Integration display name. Use official spelling for applications.",
          "type": "string"
        },
        "link": {
          "description": "Link to the instance official website if any.",
          "type": "string"
        },
        "categories": {
          "type": "array",
          "description": "Category IDs that this integration falls into. IDs can be found in integrations/categories.yaml",
          "items": {
            "type": "string",
            "description": "String defining integration category"
          }
        },
        "icon_filename": {
          "type": "string",
          "description": "The filename of the integration's icon, as sourced from https://github.com/netdata/website/tree/master/themes/tailwind/static/img."
        },
        "variables": {
          "type": "object",
          "description": "A mapping of variables to be used when templating other keys.",
          "patternProperties": {
            "^[a-zA-Z_][a-zA-Z0-9_]*$": {
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "type": "integer"
                },
                {
                  "type": "boolean"
                },
                {
                  "type": "number"
                }
              ]
            }
          },
          "additionalProperties": false
        }
      },
      "required": [
        "name",
        "link",
        "categories",
        "icon_filename"
      ]
    },
    "keywords": {
      "type": "array",
      "description": "An array of terms related to the integration.",
      "items": {
        "type": "string"
      }
    },
    "short_setup": {
      "type": "object",
      "description": "Simplified information about how to enable and configure the integration.",
      "properties": {
        "description": {
          "type": "string",
          "description": "A description of how to enable and configure the integration."
        }
      },
      "required": [
        "description"
      ]
    },
    "full_setup": {
      "type": "object",
      "description": "Complete information that is needed to enable and configure the integration.",
      "properties": {
        "prerequisites": {
          "type": "object",
          "description": "Actions the user must take to make the integration work, if any. It includes both configuring Netdata (e.g. if the integration is disabled by default) and configuring any external components the integration interacts with.",
          "properties": {
            "list": {
              "type": "array",
              "description": "List of prerequisites.",
              "items": {
                "type": "object",
                "properties": {
                  "title": {
                    "type": "string",
                    "description": "Title should reflect the description, be short and in the form of a command (e.g. Create netdata user, Enable build-in web server)."
                  },
                  "description": {
                    "type": "string",
                    "description": "Steps to follow to meet this prerequisite."
                  }
                },
                "required": [
                  "title",
                  "description"
                ]
              }
            }
          },
          "required": [
            "list"
          ]
        },
        "configuration": {
          "description": "Information on how to configure the integration and available configuration options.",
          "type": "object",
          "properties": {
            "file": {
              "type": "object",
              "description": "Configuration file.",
              "properties": {
                "name": {
                  "type": "string",
                  "description": "Configuration file name."
                },
                "section_name": {
                  "type": "string",
                  "description": "The name of the section in the configuration file. Only for data collectors whose configuration is in netdata.conf (e.g. proc.plugin modules)."
                }
              },
              "required": [
                "name"
              ]
            },
            "options": {
              "type": "object",
              "description": "All information about the available configuration options.",
              "properties": {
                "description": {
                  "type": "string",
                  "description": "Optional common information about options."
                },
                "folding": {
                  "$ref": "./shared.json#/$defs/_folding"
                },
                "list": {
                  "type": "array",
                  "description": "List of configuration options.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "Option name."
                      },
                      "description": {
                        "type": "string",
                        "description": "Option description. Must be short. Use 'detailed_description' for a long description."
                      },
                      "detailed_description": {
                        "type": "string",
                        "description": "Option detailed description. Use it to describe in details complex options."
                      },
                      "default_value": {
                        "type": [
                          "string",
                          "number",
                          "boolean"
                        ],
                        "description": "Default value. Leave empty if none."
                      },
                      "required": {
                        "type": "boolean",
                        "description": "Indicates whether this option is required or not. The option is required if the integration does not work if it is not set."
                      }
                    },
                    "required": [
                      "name",
                      "description",
                      "default_value",
                      "required"
                    ]
                  }
                }
              },
              "required": [
                "description",
                "folding",
                "list"
              ]
            },
            "examples": {
              "type": "object",
              "description": "Configuration examples. The more examples the better!",
              "properties": {
                "folding": {
                  "$ref": "./shared.json#/$defs/_folding"
                },
                "list": {
                  "type": "array",
                  "description": "List of configuration examples.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "Example name."
                      },
                      "folding": {
                        "$ref": "./shared.json#/$defs/_folding_relaxed"
                      },
                      "description": {
                        "type": "string",
                        "description": "Example description."
                      },
                      "config": {
                        "type": "string",
                        "description": "Example configuration."
                      }
                    },
                    "required": [
                      "name",
                      "description",
                      "config"
                    ]
                  }
                }
              },
              "required": [
                "folding",
                "list"
              ]
            }
          },
          "required": [
            "file",
            "options",
            "examples"
          ]
        }
      },
      "required": [
        "prerequisites",
        "configuration"
      ]
    },
    "troubleshooting": {
      "type": "object",
      "description": "Information needed to troubleshoot issues with this collector.",
      "properties": {
        "problems": {
          "type": "object",
          "description": "Common problems that users face again and again... and their solutions.",
          "properties": {
            "list": {
              "type": "array",
              "description": "List of common problems.",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "Problem name."
                  },
                  "description": {
                    "type": "string",
                    "description": "Explanation of the problem and its solution."
                  }
                }
              },
              "required": [
                "name",
                "description"
              ]
            }
          },
          "required": [
            "list"
          ]
        }
      },
      "required": [
        "problems"
      ]
    },
    "_folding": {
      "type": "object",
      "description": "Content folding settings.",
      "properties": {
        "title": {
          "description": "Folded content summary title.",
          "type": "string"
        },
        "enabled": {
          "description": "Determines if this content should be folded.",
          "type": "boolean"
        }
      },
      "required": [
        "title",
        "enabled"
      ]
    },
    "_folding_relaxed": {
      "type": "object",
      "description": "Content folding settings with optional title.",
      "properties": {
        "title": {
          "description": "Folded content summary title.",
          "type": "string"
        },
        "enabled": {
          "description": "Determines if this content should be folded.",
          "type": "boolean"
        }
      },
      "required": [
        "enabled"
      ]
    }
  }
}