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