github.com/netdata/go.d.plugin@v0.58.1/modules/elasticsearch/config_schema.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "title": "go.d/elasticsearch 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 "cluster_mode": { 19 "type": "boolean" 20 }, 21 "collect_node_stats": { 22 "type": "boolean" 23 }, 24 "collect_cluster_health": { 25 "type": "boolean" 26 }, 27 "collect_cluster_stats": { 28 "type": "boolean" 29 }, 30 "collect_indices_stats": { 31 "type": "boolean" 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 "insecure_skip_verify": { 67 "type": "boolean" 68 } 69 }, 70 "required": [ 71 "name", 72 "url" 73 ] 74 }