summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/ntpd/config_schema.json
blob: ef360a7f95eb69c21ae7951b29e496de701454a8 (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
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "go.d/ntpd job configuration schema.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "address": {
      "type": "string"
    },
    "timeout": {
      "type": [
        "string",
        "integer"
      ]
    },
    "collect_peers": {
      "type": "boolean"
    }
  },
  "required": [
    "name",
    "address"
  ]
}