github.com/netdata/go.d.plugin@v0.58.1/modules/pika/config_schema.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "title": "go.d/pika job configuration schema.", 5 "properties": { 6 "name": { 7 "type": "string" 8 }, 9 "address": { 10 "type": "string" 11 }, 12 "timeout": { 13 "type": [ 14 "string", 15 "integer" 16 ] 17 }, 18 "tls_ca": { 19 "type": "string" 20 }, 21 "tls_cert": { 22 "type": "string" 23 }, 24 "tls_key": { 25 "type": "string" 26 }, 27 "tls_skip_verify": { 28 "type": "boolean" 29 } 30 }, 31 "required": [ 32 "name", 33 "address" 34 ] 35 }