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