| 1 | { |
| 2 | "jsonSchema": { |
| 3 | "$schema": "http://json-schema.org/draft-07/schema#", |
| 4 | "title": "PgBouncer collector configuration.", |
| 5 | "type": "object", |
| 6 | "properties": { |
| 7 | "update_every": { |
| 8 | "title": "Update every", |
| 9 | "description": "Data collection interval, measured in seconds.", |
| 10 | "type": "integer", |
| 11 | "minimum": 1, |
| 12 | "default": 1 |
| 13 | }, |
| 14 | "autodetection_retry": { |
| 15 | "title": "Detection retry", |
| 16 | "description": "Recheck interval in seconds. Zero means no recheck will be scheduled.", |
| 17 | "type": "integer", |
| 18 | "minimum": 0, |
| 19 | "default": 60 |
| 20 | }, |
| 21 | "dsn": { |
| 22 | "title": "DSN", |
| 23 | "description": "PgBouncer server Data Source Name in [key/value string](https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING-KEYWORD-VALUE) or [URI](https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING-URIS) format.", |
| 24 | "type": "string", |
| 25 | "default": "postgres://netdata:password@127.0.0.1:6432/pgbouncer" |
| 26 | }, |
| 27 | "timeout": { |
| 28 | "title": "Timeout", |
| 29 | "description": "Timeout for queries, in seconds.", |
| 30 | "type": "number", |
| 31 | "minimum": 0.5, |
| 32 | "default": 1 |
| 33 | }, |
| 34 | "vnode": { |
| 35 | "title": "Vnode", |
| 36 | "description": "Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes).", |
| 37 | "type": "string" |
| 38 | } |
| 39 | }, |
| 40 | "required": [ |
| 41 | "dsn" |
| 42 | ] |
| 43 | }, |
| 44 | "uiSchema": { |
| 45 | "uiOptions": { |
| 46 | "fullPage": true |
| 47 | }, |
| 48 | "vnode": { |
| 49 | "ui:placeholder": "To use this option, first create a Virtual Node and then reference its name here." |
| 50 | }, |
| 51 | "autodetection_retry": { |
| 52 | "ui:help": "This option determines how frequently (in seconds) Netdata will retry data collection jobs that failed initially, with the value of 60 meaning it retries to start data collection jobs every 60 seconds, while setting it to 0 disables this retry mechanism entirely." |
| 53 | }, |
| 54 | "dsn": { |
| 55 | "ui:placeholder": "postgres://username:password@host:port/dbname" |
| 56 | }, |
| 57 | "timeout": { |
| 58 | "ui:help": "Accepts decimals for precise control (e.g., type 1.5 for 1.5 seconds)." |
| 59 | } |
| 60 | } |
| 61 | } |