-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathsplunk-otel-collector.json
75 lines (75 loc) · 1.54 KB
/
splunk-otel-collector.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
{
"containerDefinitions": [
{
"cpu": 0,
"environment": [
{
"name": "SPLUNK_ACCESS_TOKEN",
"value": "MY_SPLUNK_ACCESS_TOKEN"
},
{
"name": "SPLUNK_REALM",
"value": "MY_SPLUNK_REALM"
},
{
"name": "SPLUNK_CONFIG",
"value": "/etc/otel/collector/ecs_ec2_config.yaml"
},
{
"name": "HOST_PROC",
"value": "/hostfs/proc"
},
{
"name": "HOST_SYS",
"value": "/hostfs/sys"
},
{
"name": "HOST_ETC",
"value": "/hostfs/etc"
},
{
"name": "HOST_VAR",
"value": "/hostfs/var"
},
{
"name": "HOST_RUN",
"value": "/hostfs/run"
},
{
"name": "HOST_DEV",
"value": "/hostfs/dev"
}
],
"mountPoints": [
{
"readOnly": true,
"containerPath": "/hostfs",
"sourceVolume": "hostfs"
},
{
"readOnly": true,
"containerPath": "/rootfs",
"sourceVolume": "hostfs"
}
],
"memory": 512,
"volumesFrom": [],
"image": "quay.io/signalfx/splunk-otel-collector:latest",
"essential": true,
"name": "splunk-otel-collector"
}
],
"family": "splunk-otel-collector",
"requiresCompatibilities": [
"EC2"
],
"networkMode": "host",
"volumes": [
{
"name": "hostfs",
"host": {
"sourcePath": "/"
}
}
]
}