Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 868 Bytes

File metadata and controls

21 lines (18 loc) · 868 Bytes

FireLens Example: Logging to Sumologic with Fluent Bit

For documentation on sending your FireLens monitored log data to Sumologic, see: Collect AWS ECS Fargate and EC2 Container Logs.

AWS recommends that you store sensitive information (like your Sumologic URI) using secretOptions as shown in the example task definition. This is optional - it is also valid to simply specify the URI in options map:

"logConfiguration": {
	"logDriver":"awsfirelens",
	"options": {
		"Name":"http",
		"Host": "<endpoint>",
		"URI": "/receiver/v1/http/<token>",
		"Port": "443",
		"tls": "on",
		"tls.verify": "off",
		"Format": "json_lines",
		"Retry_Limit": "2"
	}
}