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

     1  {
     2    "$schema": "http://json-schema.org/draft-07/schema#",
     3    "title": "go.d/geth job configuration schema.",
     4    "type": "object",
     5    "properties": {
     6      "name": {
     7        "type": "string"
     8      },
     9      "url": {
    10        "type": "string"
    11      },
    12      "timeout": {
    13        "type": [
    14          "string",
    15          "integer"
    16        ]
    17      },
    18      "username": {
    19        "type": "string"
    20      },
    21      "password": {
    22        "type": "string"
    23      },
    24      "proxy_url": {
    25        "type": "string"
    26      },
    27      "proxy_username": {
    28        "type": "string"
    29      },
    30      "proxy_password": {
    31        "type": "string"
    32      },
    33      "headers": {
    34        "type": "object",
    35        "additionalProperties": {
    36          "type": "string"
    37        }
    38      },
    39      "not_follow_redirects": {
    40        "type": "boolean"
    41      },
    42      "tls_ca": {
    43        "type": "string"
    44      },
    45      "tls_cert": {
    46        "type": "string"
    47      },
    48      "tls_key": {
    49        "type": "string"
    50      },
    51      "insecure_skip_verify": {
    52        "type": "boolean"
    53      }
    54    },
    55    "required": [
    56      "name",
    57      "url"
    58    ]
    59  }