github.com/netdata/go.d.plugin@v0.58.1/modules/dnsquery/config_schema.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "title": "go.d/dns_query job configuration schema.", 4 "type": "object", 5 "properties": { 6 "name": { 7 "type": "string" 8 }, 9 "domains": { 10 "type": "array", 11 "items": { 12 "type": "string" 13 } 14 }, 15 "servers": { 16 "type": "array", 17 "items": { 18 "type": "string" 19 } 20 }, 21 "network": { 22 "type": "string" 23 }, 24 "record_type": { 25 "type": "string" 26 }, 27 "record_types": { 28 "type": "array", 29 "items": { 30 "type": "string" 31 } 32 }, 33 "port": { 34 "type": "integer" 35 }, 36 "timeout": { 37 "type": [ 38 "string", 39 "integer" 40 ] 41 } 42 }, 43 "required": [ 44 "name", 45 "domains", 46 "servers" 47 ] 48 }