Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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"
	}
}