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