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