-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelastiq.toml
More file actions
65 lines (52 loc) · 1.35 KB
/
elastiq.toml
File metadata and controls
65 lines (52 loc) · 1.35 KB
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
[env.dev]
endpoints = ["http://localhost:9200"]
default = true
index = "dev-*"
output = "pretty"
[env.dev2]
endpoints = ["http://localhost:9201"]
default = false
index = "dev-*"
output = "pretty"
[env.dev2.authorization.basic]
user = "username"
password = "some password"
[env.dev3]
default = false
index = "dev-*"
output = "pretty"
[env.dev3.authorization.cloud]
cloud_id = "my-organization:ZXVyb3BlLXdlc3QzLmdjcC5jbG91ZC5lcy5pbzo0NDMkYmliYSRib2JhCg=="
api_key = "aG9iYTpzaG1vYmEK"
[env.dev4]
endpoints = ["http://localhost:9203"]
default = false
index = "dev-*"
output = "pretty"
[env.dev4.authorization.header.Authorization]
value = "special header value"
[env.dev4.authorization.header.ExtraAuthorization]
value = "special header value2"
[env.prod]
endpoints = ["http://localhost:9299"]
default = false
index = "prod-*"
output = "pretty"
[env.dd]
endpoints = ["https://api.datadoghq.eu"]
default = false
source = "datadog"
dd_api_key = "get one from your DevOps"
dd_personal_key = "get one from your datadog settings"
[output.pretty]
exclude = ["kubernetes", "message", "@timestamp"]
format = "json"
decode_recursively = true
[output.message]
only = ["message"]
format = "json"
[output.all]
format = "json"
[aliases]
app = "kubernetes.labels.app"
env = "kubernetes.labels.environment"