Syslog server to AWS CloudWatch Logs Bridge
637
This is a Syslog server that sends all logs received over to AWS's CloudWatch Logs.
Features:
514).{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": [
"arn:aws:logs:*:*:*"
]
}
]
}
$ docker run -e \
AWS_REGION=ap-southeast-2 \
AWS_ACCESS_KEY_ID=foo \
AWS_SECRET_ACCESS_KEY=bar \
LOG_GROUP_NAME=test-logger \
-p 5014:514 \
-p 5014:514/udp \
rjocoleman/syslog-cloudwatch-bridge
127.0.0.1:5014, these will be viewable in your AWS CloudWatch Logs Management console under the group called test-logger.Issues with AWS signatures - as per #1 this could be a clock sync issue. You should add timezone to your container (as a volume) /etc/timezone:/etc/timezone:ro
Content type
Image
Digest
Size
386.2 MB
Last updated
over 7 years ago
docker pull gabrielrcouto/syslog-cloudwatch-bridge