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

     1  {
     2    "$schema": "http://json-schema.org/draft-07/schema#",
     3    "title": "go.d/pulsar 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      "topic_filter": {
    19        "type": "object",
    20        "properties": {
    21          "includes": {
    22            "type": "array",
    23            "items": {
    24              "type": "string"
    25            }
    26          },
    27          "excludes": {
    28            "type": "array",
    29            "items": {
    30              "type": "string"
    31            }
    32          }
    33        }
    34      },
    35      "username": {
    36        "type": "string"
    37      },
    38      "password": {
    39        "type": "string"
    40      },
    41      "proxy_url": {
    42        "type": "string"
    43      },
    44      "proxy_username": {
    45        "type": "string"
    46      },
    47      "proxy_password": {
    48        "type": "string"
    49      },
    50      "headers": {
    51        "type": "object",
    52        "additionalProperties": {
    53          "type": "string"
    54        }
    55      },
    56      "not_follow_redirects": {
    57        "type": "boolean"
    58      },
    59      "tls_ca": {
    60        "type": "string"
    61      },
    62      "tls_cert": {
    63        "type": "string"
    64      },
    65      "tls_key": {
    66        "type": "string"
    67      },
    68      "insecure_skip_verify": {
    69        "type": "boolean"
    70      }
    71    },
    72    "required": [
    73      "name",
    74      "url"
    75    ]
    76  }