summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/snmp/config_schema.json
blob: a83a2da365f06d2bb47e5cf9227ed5978d33e3b6 (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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
{
  "jsonSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "properties": {
      "update_every": {
        "title": "Update every",
        "description": "Data collection interval, measured in seconds.",
        "type": "integer",
        "minimum": 1,
        "default": 1
      },
      "hostname": {
        "title": "Hostname",
        "description": "The hostname or IP address of the SNMP-enabled device.",
        "type": "string"
      },
      "community": {
        "title": "SNMPv1/2 community",
        "description": "The SNMP community string for SNMPv1/v2c authentication.",
        "type": "string",
        "default": "public"
      },
      "options": {
        "title": "Options",
        "description": "Configuration options for SNMP monitoring.",
        "type": [
          "object",
          "null"
        ],
        "properties": {
          "version": {
            "title": "SNMP version",
            "type": "string",
            "enum": [
              "1",
              "2c",
              "3"
            ],
            "default": "2c"
          },
          "port": {
            "title": "Port",
            "description": "The port number on which the SNMP service is running.",
            "type": "integer",
            "exclusiveMinimum": 0,
            "default": 161
          },
          "retries": {
            "title": "Retries",
            "description": "The number of retries to attempt for SNMP requests.",
            "type": "integer",
            "minimum": 0,
            "default": 161
          },
          "timeout": {
            "title": "Timeout",
            "description": "The timeout duration in seconds for SNMP requests.",
            "type": "integer",
            "minimum": 1,
            "default": 1
          },
          "max_request_size": {
            "title": "Max OIDs in request",
            "description": "The maximum number of OIDs allowed in a single SNMP request.",
            "type": "integer",
            "minimum": 1,
            "default": 60
          }
        },
        "required": [
          "version",
          "port",
          "retries",
          "timeout",
          "max_request_size"
        ]
      },
      "user": {
        "title": "SNMPv3 configuration",
        "description": "Configuration options for SNMPv3 authentication and encryption.",
        "type": [
          "object",
          "null"
        ],
        "properties": {
          "name": {
            "title": "Username",
            "description": "The username for SNMPv3 authentication.",
            "type": "string"
          },
          "level": {
            "title": "Security level",
            "description": "Controls the security aspects of SNMPv3 communication, including authentication and encryption.",
            "type": "string",
            "enum": [
              "none",
              "authNoPriv",
              "authPriv"
            ],
            "default": "authPriv"
          },
          "auth_proto": {
            "title": "Authentication protocol",
            "type": "string",
            "enum": [
              "none",
              "md5",
              "sha",
              "sha224",
              "sha256",
              "sha384",
              "sha512"
            ],
            "default": "sha512"
          },
          "auth_key": {
            "title": "Authentication passphrase",
            "type": "string"
          },
          "priv_proto": {
            "title": "Privacy protocol",
            "type": "string",
            "enum": [
              "none",
              "des",
              "aes",
              "aes192",
              "aes256",
              "aes192c"
            ],
            "default": "aes192c"
          },
          "priv_key": {
            "title": "Privacy passphrase",
            "type": "string"
          }
        }
      },
      "charts": {
        "title": "Charts configuration",
        "type": [
          "array",
          "null"
        ],
        "uniqueItems": true,
        "minItems": 1,
        "items": {
          "title": "Chart",
          "type": [
            "object",
            "null"
          ],
          "properties": {
            "id": {
              "title": "ID",
              "description": "Unique identifier for the chart.",
              "type": "string"
            },
            "title": {
              "title": "Title",
              "description": "Title of the chart.",
              "type": "string"
            },
            "units": {
              "title": "Units",
              "description": "Unit label for the vertical axis on charts.",
              "type": "string"
            },
            "family": {
              "title": "Family",
              "description": "Subsection on the dashboard where the chart will be displayed.",
              "type": "string"
            },
            "type": {
              "title": "Type",
              "type": "string",
              "enum": [
                "line",
                "area",
                "stacked"
              ],
              "default": "line"
            },
            "priority": {
              "title": "Priority",
              "description": "Rendering priority of the chart on the dashboard. Lower priority values will cause the chart to appear before those with higher priority values.",
              "type": "integer",
              "minimum": 1,
              "default": 90000
            },
            "multiply_range": {
              "title": "OID index range",
              "description": "Specifies the range of indexes used to create multiple charts. If set, a chart will be created for each index in the specified range. Each chart will have the index appended to the OID dimension.",
              "type": [
                "array",
                "null"
              ],
              "items": {
                "title": "Index",
                "type": "integer",
                "minimum": 0
              },
              "uniqueItems": true,
              "maxItems": 2
            },
            "dimensions": {
              "title": "Dimensions",
              "description": "Configuration for dimensions of the chart.",
              "type": [
                "array",
                "null"
              ],
              "uniqueItems": true,
              "minItems": 1,
              "items": {
                "title": "Dimension configuration",
                "type": [
                  "object",
                  "null"
                ],
                "properties": {
                  "oid": {
                    "title": "OID",
                    "description": "SNMP OID.",
                    "type": "string"
                  },
                  "name": {
                    "title": "Dimension",
                    "description": "Name of the dimension.",
                    "type": "string"
                  },
                  "algorithm": {
                    "title": "Algorithm",
                    "description": "Algorithm of the dimension.",
                    "type": "string",
                    "enum": [
                      "absolute",
                      "incremental"
                    ],
                    "default": "absolute"
                  },
                  "multiplier": {
                    "title": "Multiplier",
                    "description": "Value to multiply the collected value.",
                    "type": "integer",
                    "not": {
                      "const": 0
                    },
                    "default": 1
                  },
                  "divisor": {
                    "title": "Divisor",
                    "description": "Value to divide the collected value.",
                    "type": "integer",
                    "not": {
                      "const": 0
                    },
                    "default": 1
                  }
                },
                "required": [
                  "oid",
                  "name",
                  "algorithm",
                  "multiplier",
                  "divisor"
                ]
              }
            }
          },
          "required": [
            "id",
            "title",
            "units",
            "family",
            "type",
            "priority",
            "dimensions"
          ]
        }
      }
    },
    "required": [
      "hostname",
      "community",
      "options",
      "charts"
    ],
    "additionalProperties": false,
    "patternProperties": {
      "^name$": {}
    }
  },
  "uiSchema": {
    "uiOptions": {
      "fullPage": true
    },
    "options": {
      "version": {
        "ui:widget": "radio",
        "ui:options": {
          "inline": true
        }
      }
    },
    "user": {
      "level": {
        "ui:widget": "radio",
        "ui:options": {
          "inline": true
        }
      },
      "auth_proto": {
        "ui:widget": "radio",
        "ui:options": {
          "inline": true
        }
      },
      "priv_proto": {
        "ui:widget": "radio",
        "ui:options": {
          "inline": true
        }
      }
    },
    "charts": {
      "items": {
        "ui:collapsible": true,
        "type": {
          "ui:widget": "radio",
          "ui:options": {
            "inline": true
          }
        },
        "multiply_range": {
          "ui:listFlavour": "list"
        },
        "dimensions": {
          "items": {
            "ui:collapsible": true,
            "algorithm": {
              "ui:widget": "radio",
              "ui:options": {
                "inline": true
              }
            }
          }
        }
      }
    },
    "ui:flavour": "tabs",
    "ui:options": {
      "tabs": [
        {
          "title": "Base",
          "fields": [
            "update_every",
            "hostname",
            "community",
            "options"
          ]
        },
        {
          "title": "SNMPv3",
          "fields": [
            "user"
          ]
        },
        {
          "title": "Charts",
          "fields": [
            "charts"
          ]
        }
      ]
    }
  }
}