-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.schema.yaml
69 lines (67 loc) · 1.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
hosts:
description: "List of Kafka brokers hosts:port for sender action."
type: "string"
default: "172.16.1.10:9092"
required: true
client_id:
description: "Unique client ID to identify ourselves when sending"
type: "string"
default: "st2-kafka-producer"
required: true
message_sensor:
description: "Sensor specific settings"
type: "object"
required: false
additionalProperties: true
properties:
hosts:
description: "List of Kafka brokers hosts:port for sensor to connect to"
type: "string"
default: "172.16.1.10:9092"
required: true
topics:
description: "List of topics for the sensor to subscribe to"
type: "array"
items:
type: "string"
default: "test"
required: true
group_id:
description: "The sensors group ID"
type: "string"
default: "testgroupID"
required: true
client_id:
description: "The sensors client ID"
type: "string"
default: "testclientID"
required: true
gcp_message_sensor:
description: "GCP sensor specific settings"
type: "object"
required: false
additionalProperties: true
properties:
hosts:
description: "List of Kafka brokers hosts:port for sensor to connect to"
type: "string"
default: "172.16.1.10:9092"
required: true
topics:
description: "List of base64 encoded topics for the sensor to subscribe to"
type: "array"
items:
type: "string"
default: "test"
required: true
group_id:
description: "The sensors group ID"
type: "string"
default: "st2gcpgroup"
required: true
client_id:
description: "The sensors client ID"
type: "string"
default: "st2gcpclient"
required: true