Skip to content

Instantly share code, notes, and snippets.

@csereno
Created October 1, 2018 20:35
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save csereno/deac72776418173c4f3169b3f34c1246 to your computer and use it in GitHub Desktop.
Save csereno/deac72776418173c4f3169b3f34c1246 to your computer and use it in GitHub Desktop.
AWS CloudWatch Agent configuration file example for Linux with standard /var/log/messages, secure, and yum logs
{
"agent": {
"metrics_collection_interval": 10,
"logfile": "/opt/aws/amazon-cloudwatch-agent/logs/amazon-cloudwatch-agent.log"
},
"metrics": {
"metrics_collected": {
"cpu": {
"resources": [
"*"
],
"measurement": [
{"name": "cpu_usage_idle", "rename": "CPU_USAGE_IDLE", "unit": "Percent"},
{"name": "cpu_usage_nice", "unit": "Percent"},
"cpu_usage_guest"
],
"totalcpu": false,
"metrics_collection_interval": 10,
"append_dimensions": {
"customized_dimension_key_1": "customized_dimension_value_1",
"customized_dimension_key_2": "customized_dimension_value_2"
}
},
"disk": {
"resources": [
"/",
"/tmp"
],
"measurement": [
{"name": "free", "rename": "DISK_FREE", "unit": "Gigabytes"},
"total",
"used"
],
"ignore_file_system_types": [
"sysfs", "devtmpfs"
],
"metrics_collection_interval": 60,
"append_dimensions": {
"customized_dimension_key_3": "customized_dimension_value_3",
"customized_dimension_key_4": "customized_dimension_value_4"
}
},
"diskio": {
"resources": [
"*"
],
"measurement": [
"reads",
"writes",
"read_time",
"write_time",
"io_time"
],
"metrics_collection_interval": 60
},
"swap": {
"measurement": [
"swap_used",
"swap_free",
"swap_used_percent"
]
},
"mem": {
"measurement": [
"mem_used",
"mem_cached",
"mem_total"
],
"metrics_collection_interval": 10
},
"net": {
"resources": [
"eth0"
],
"measurement": [
"bytes_sent",
"bytes_recv",
"drop_in",
"drop_out"
]
},
"netstat": {
"measurement": [
"tcp_established",
"tcp_syn_sent",
"tcp_close"
],
"metrics_collection_interval": 60
},
"processes": {
"measurement": [
"running",
"sleeping",
"dead"
]
}
},
"append_dimensions": {
"ImageId": "${aws:ImageId}",
"InstanceId": "${aws:InstanceId}",
"InstanceType": "${aws:InstanceType}",
"AutoScalingGroupName": "${aws:AutoScalingGroupName}"
},
"aggregation_dimensions" : [["ImageId"], ["InstanceId", "InstanceType"], ["d1"],[]]
},
"logs": {
"logs_collected": {
"files": {
"collect_list": [
{
"file_path": "/opt/aws/amazon-cloudwatch-agent/logs/amazon-cloudwatch-agent.log",
"log_group_name": "/ec2/CloudWatchAgentLog/",
"log_stream_name": "{instance_id}_{hostname}",
"timezone": "Local"
},
{
"file_path": "/var/log/messages",
"log_group_name": "/ec2/var/log/messages",
"log_stream_name": "{instance_id}_{hostname}",
"timezone": "Local"
},
{
"file_path": "/var/log/secure",
"log_group_name": "/ec2/var/log/secure",
"log_stream_name": "{instance_id}_{hostname}",
"timezone": "Local"
},
{
"file_path": "/var/log/yum.log",
"log_group_name": "/ec2/var/log/yum",
"log_stream_name": "{instance_id}_{hostname}",
"timezone": "Local"
}
]
}
},
"log_stream_name": "/ec2/catchall"
}
}
@ParoniaSun
Copy link

How to get log from .gz file. I have try to configure like: "file_path": "/var/log/**.gz", but it didn't work.

@csereno
Copy link
Author

csereno commented Jun 14, 2022

How to get log from .gz file. I have try to configure like: "file_path": "/var/log/**.gz", but it didn't work.

@ParaniaSun From the documentation AWS states, "Zipped files are not supported."

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment