github.com/netdata/go.d.plugin@v0.58.1/modules/phpfpm/config_schema.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "title": "go.d/phpfpm job configuration schema.", 4 "type": "object", 5 "properties": { 6 "name": { 7 "type": "string" 8 }, 9 "url": { 10 "type": "string" 11 }, 12 "socket": { 13 "type": "string" 14 }, 15 "address": { 16 "type": "string" 17 }, 18 "fcgi_path": { 19 "type": "string" 20 }, 21 "timeout": { 22 "type": [ 23 "string", 24 "integer" 25 ] 26 }, 27 "username": { 28 "type": "string" 29 }, 30 "password": { 31 "type": "string" 32 }, 33 "proxy_url": { 34 "type": "string" 35 }, 36 "proxy_username": { 37 "type": "string" 38 }, 39 "proxy_password": { 40 "type": "string" 41 }, 42 "headers": { 43 "type": "object", 44 "additionalProperties": { 45 "type": "string" 46 } 47 }, 48 "not_follow_redirects": { 49 "type": "boolean" 50 }, 51 "tls_ca": { 52 "type": "string" 53 }, 54 "tls_cert": { 55 "type": "string" 56 }, 57 "tls_key": { 58 "type": "string" 59 }, 60 "insecure_skip_verify": { 61 "type": "boolean" 62 } 63 }, 64 "oneOf": [ 65 { 66 "required": [ 67 "name", 68 "url" 69 ] 70 }, 71 { 72 "required": [ 73 "name", 74 "socket" 75 ] 76 }, 77 { 78 "required": [ 79 "name", 80 "address" 81 ] 82 } 83 ] 84 }