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

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