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