forked from guilhemmarchand/trackme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
globalConfig.json
151 lines (151 loc) · 5.32 KB
/
globalConfig.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"pages": {
"configuration": {
"tabs": [
{
"name": "logging",
"entity": [
{
"type": "singleSelect",
"label": "Log level",
"options": {
"disableSearch": true,
"autoCompleteFields": [
{
"value": "DEBUG",
"label": "DEBUG"
},
{
"value": "INFO",
"label": "INFO"
},
{
"value": "WARNING",
"label": "WARNING"
},
{
"value": "ERROR",
"label": "ERROR"
},
{
"value": "CRITICAL",
"label": "CRITICAL"
}
]
},
"defaultValue": "INFO",
"field": "loglevel"
}
],
"title": "Logging"
}
],
"title": "Configuration",
"description": "Configure TrackMe"
}
},
"alerts": [
{
"name": "trackme_smart_status",
"label": "Trackme Smart Status",
"description": "Run the TrackMe Smart Status",
"entity": [
{
"type": "text",
"label": "Object category",
"help": "Object category",
"field": "object_category",
"required": true
},
{
"type": "text",
"label": "Object name",
"help": "Object name",
"field": "object_name",
"required": true
}
]
},
{
"name": "trackme_auto_ack",
"label": "TrackMe auto acknowledge",
"description": "Perform an automatic acknowledgement of an entity triggering",
"entity": [
{
"type": "text",
"label": "Object category",
"help": "Object category",
"field": "object_category",
"required": true
},
{
"type": "text",
"label": "Object name",
"help": "Object name",
"field": "object_name",
"required": true
},
{
"type": "text",
"label": "Ack period (seconds)",
"help": "Acknowledge period in seconds",
"field": "ack_period",
"required": true
}
]
},
{
"name": "trackme_free_style_rest_call",
"label": "TrackMe free style rest call",
"description": "Performs a rest call to any TrackMe REST API endpoint",
"entity": [
{
"type": "text",
"label": "TrackMe Endpoint URL",
"help": "Enter the API endpoint, example: /services/trackme/v1/data_sources/ds_disable_data_sampling",
"field": "endpoint_url",
"required": true
},
{
"type": "singleSelect",
"label": "HTTP mode",
"field": "http_mode",
"defaultValue": "get",
"help": "HTTP mode expected by the API endpoint",
"required": true,
"options": {
"items": [
{
"value": "get",
"label": "get"
},
{
"value": "post",
"label": "post"
},
{
"value": "delete",
"label": "delete"
}
],
"display": true
}
},
{
"type": "text",
"label": "HTTP body",
"help": "HTTP body",
"field": "http_body",
"required": true
}
]
}
],
"meta": {
"name": "trackme",
"restRoot": "trackme",
"version": "1.2.58",
"displayName": "TrackMe",
"schemaVersion": "0.0.3"
}
}