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

     1  {
     2    "$schema": "http://json-schema.org/draft-07/schema#",
     3    "title": "go.d/openvpn_status_log job configuration schema.",
     4    "type": "object",
     5    "properties": {
     6      "name": {
     7        "type": "string"
     8      },
     9      "log_path": {
    10        "type": "string"
    11      },
    12      "per_user_stats": {
    13        "type": "object",
    14        "properties": {
    15          "includes": {
    16            "type": "array",
    17            "items": {
    18              "type": "string"
    19            }
    20          },
    21          "excludes": {
    22            "type": "array",
    23            "items": {
    24              "type": "string"
    25            }
    26          }
    27        }
    28      }
    29    },
    30    "required": [
    31      "name",
    32      "log_path"
    33    ]
    34  }