github.com/netdata/go.d.plugin@v0.58.1/modules/openvpn/config_schema.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-07/schema#",
     3    "title": "go.d/openvpn job configuration schema.",
     4    "type": "object",
     5    "properties": {
     6      "name": {
     7        "type": "string"
     8      },
     9      "address": {
    10        "type": "string"
    11      },
    12      "connect_timeout": {
    13        "type": [
    14          "string",
    15          "integer"
    16        ]
    17      },
    18      "read_timeout": {
    19        "type": [
    20          "string",
    21          "integer"
    22        ]
    23      },
    24      "write_timeout": {
    25        "type": [
    26          "string",
    27          "integer"
    28        ]
    29      },
    30      "per_user_stats": {
    31        "type": "object",
    32        "properties": {
    33          "includes": {
    34            "type": "array",
    35            "items": {
    36              "type": "string"
    37            }
    38          },
    39          "excludes": {
    40            "type": "array",
    41            "items": {
    42              "type": "string"
    43            }
    44          }
    45        }
    46      }
    47    },
    48    "required": [
    49      "name",
    50      "address"
    51    ]
    52  }