-
Notifications
You must be signed in to change notification settings - Fork 14
/
config.schema.yaml
43 lines (43 loc) · 1.13 KB
/
config.schema.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
sensor_config:
description: "RabbitMQ Sensor settings"
type: "object"
required: true
additionalProperties: true
properties:
host:
description: "RabbitMQ host to connect to"
type: "string"
required: true
username:
description: "Optional username for RabbitMQ"
type: "string"
password:
description: "Optional password for RabbitMQ"
type: "string"
secret: true
rabbitmq_queue_sensor:
description: "Queue settings"
type: "object"
required: true
additionalProperties: true
properties:
queues:
description: "List of queues to monitor"
type: "array"
items:
type: "string"
required: true
quorum_queues:
description: "List of queues with quorum type"
type: "array"
items:
type: "string"
required: false
deserialization_method:
description: "Method used to de-serialize body. Default is to leave body as-is"
type: "string"
enum:
- "json"
- "pickle"
required: false