forked from aws-samples/amazon-ecs-firelens-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask-definition-tail.json
55 lines (55 loc) · 1.23 KB
/
task-definition-tail.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
{
"family": "firelens-example-cloudwatch",
"taskRoleArn": "arn:aws:iam::XXXXXXXXXXXX:role/ecs_task_iam_role",
"executionRoleArn": "arn:aws:iam::XXXXXXXXXXXX:role/ecs_task_execution_role",
"containerDefinitions": [
{
"essential": true,
"image": "906394416424.dkr.ecr.us-east-1.amazonaws.com/aws-for-fluent-bit:stable",
"name": "log_router",
"firelensConfiguration": {
"type": "fluentbit",
"options": {
"config-file-type": "s3",
"config-file-value": "arn:aws:s3:::yourbucket/yourdirectory/tail.conf"
}
},
"mountPoints" : [
{
"containerPath" : "/var/log/",
"sourceVolume" : "var-log"
}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "firelens-container",
"awslogs-region": "us-east-1",
"awslogs-create-group": "true",
"awslogs-stream-prefix": "firelens"
}
},
"memoryReservation": 50
},
{
"essential": true,
"image": "my-app:latest",
"name": "app",
"mountPoints": [
{
"containerPath": "/var/log/",
"sourceVolume": "var-log"
}
],
"logConfiguration": {
"logDriver":"awsfirelens"
},
"memoryReservation": 100
}
],
"volumes" : [
{
"name" : "var-log"
}
]
}