5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Cloudwatch Logs Agentの設定方法

Last updated at Posted at 2021-03-24

目的

この記事では、Cloudwatch Agentを設定し、ソフトウェア(Logstash)が生成するログファイルをCloudwatchに送信する手順を纏めます。

前提

手順

Cloudwatch Agentをインストールします。

cloudwatch-agentをインストール
sudo yum install amazon-cloudwatch-agent

Cloudwatch Agentは/opt/aws/amazon-cloudwatch-agent/bin/ 配下のconfig.json を設定したファイルを読み込んで実行されます。この設定ファイルを手動で設定するのは大変ですので、Cloudwatch Agentの設定ウィザードを活用します。

設定ウィザードを実行
sudo /opt/aws/amazon-cloudwatch-agent/bin/amazon-cloudwatch-agent-config-wizard

ウィザードに従い内容を入力します。Cloudwatch Logsだけを使うのであれば、StatDは2にしてもよかったかも。。
(追伸:AWSサポートの回答)

それぞれ StatsD や collectd を使用してメトリクスを収集する場合のみ有効化ください。```




```bash:設定ウィザードの入力
=============================================================
= Welcome to the AWS CloudWatch Agent Configuration Manager =
=============================================================
On which OS are you planning to use the agent?
1. linux
2. windows
default choice: [1]:
q
The value q is not valid to this question.
Please retry to answer:
On which OS are you planning to use the agent?
1. linux
2. windows
default choice: [1]:
1
Trying to fetch the default region based on ec2 metadata...
Are you using EC2 or On-Premises hosts?
1. EC2
2. On-Premises
default choice: [1]:
1
Which user are you planning to run the agent?
1. root
2. cwagent
3. others
default choice: [1]:
1
Do you want to turn on StatsD daemon?
1. yes
2. no
default choice: [1]:
1
Which port do you want StatsD daemon to listen to?
default choice: [8125]

What is the collect interval for StatsD daemon?
1. 10s
2. 30s
3. 60s
default choice: [1]:
3
What is the aggregation interval for metrics collected by StatsD daemon?
1. Do not aggregate
2. 10s
3. 30s
4. 60s
default choice: [4]:
4
Do you want to monitor metrics from CollectD?
1. yes
2. no
default choice: [1]:
2
Do you want to monitor any host metrics? e.g. CPU, memory, etc.
1. yes
2. no
default choice: [1]:
2
Do you have any existing CloudWatch Log Agent (http://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AgentReference.html) configuration file to import for migration?
1. yes
2. no
default choice: [2]:
2
Do you want to monitor any log files?
1. yes
2. no
default choice: [1]:
1
Log file path:
/var/log/logstash/logstash-plain.log
Log group name:
default choice: [logstash-plain.log]
logstash-logstash-plain.log
Log stream name:
default choice: [{instance_id}]

Do you want to specify any additional log files to monitor?
1. yes
2. no
default choice: [1]:
1
Log file path:
/var/log/logstash/logstash_slowlog-plain.log
Log group name:
default choice: [logstash_slowlog-plain.log]
logstash-logstash_slowlog-plain.log
Log stream name:
default choice: [{instance_id}]

Do you want to specify any additional log files to monitor?
1. yes
2. no
default choice: [1]:
2
Saved config file to /opt/aws/amazon-cloudwatch-agent/bin/config.json successfully.
Current config as follows:
{
        "agent": {
                "run_as_user": "root"
        },
        "logs": {
                "logs_collected": {
                        "files": {
                                "collect_list": [
                                        {
                                                "file_path": "/var/log/logstash/logstash-plain.log",
                                                "log_group_name": "logstash-logstash-plain.log",
                                                "log_stream_name": "{instance_id}"
                                        },
                                        {
                                                "file_path": "/var/log/logstash/logstash_slowlog-plain.log",
                                                "log_group_name": "logstash-logstash_slowlog-plain.log",
                                                "log_stream_name": "{instance_id}"
                                        }
                                ]
                        }
                }
        },
        "metrics": {
                "metrics_collected": {
                        "statsd": {
                                "metrics_aggregation_interval": 60,
                                "metrics_collection_interval": 60,
                                "service_address": ":8125"
                        }
                }
        }
}

そうすると以下のように設定ファイルが生成されます。

config.jsonを確認
pwd
/opt/aws/amazon-cloudwatch-agent/bin
 ls -ll | grep config.json
-rwxr-xr-x 1 root root      668 Mar 23 08:45 config.json

設定ファイルを作成したら、以下コマンドでコンフィグファイルを指定して実行します。

config.jsonを指定して実行
sudo /opt/aws/amazon-cloudwatch-agent/bin/amazon-cloudwatch-agent-ctl -a fetch-config -m ec2 -s -c file:/opt/aws/amazon-cloudwatch-agent/bin/config.json

その他基本コマンドは以下です。

config.jsonを指定して実行

## 停止コマンド
sudo /opt/aws/amazon-cloudwatch-agent/bin/amazon-cloudwatch-agent-ctl -m ec2 -a stop
## ステータスチェックコマンド
sudo /opt/aws/amazon-cloudwatch-agent/bin/amazon-cloudwatch-agent-ctl -m ec2 -a status
## 常時起動の設定
 sudo systemctl enable amazon-cloudwatch-agent

(追伸)設定ウィザードで作成したjsonファイルは、/opt/aws/amazon-cloudwatch-agent/bin/config.jsonに作成されるが、デフォルトでこの設定ファイルを設定したい場合は、/opt/aws/amazon-cloudwatch-agent/etc/amazon-cloudwatch-agent.jsonを設定する必要があるそうです(byAWS公式サポート)。

以上です。

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?