4
3

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 5 years have passed since last update.

Raspberry Piの温度をMackerelで監視し、アラートを飛ばす

Last updated at Posted at 2019-01-13

やりたいこと

MackerelにRaspberry Piの温度を測定するカスタムメトリクスを導入し、閾値を超えるとアラートを飛ばすようにする。

mackerel.png

経緯

先日、自宅にRaspberry Piを導入し、Mackerelで監視を行っている。
CPUやMemoryなどの基本的なメトリクスは最初から利用できるが、温度に関しては存在しないのでカスタムメトリクスとして作成する。

カスタムメトリクスの作成

公式:ホストのカスタムメトリックを投稿する
上記公式のページを参照すると、カスタムメトリクスをプラグインとして動作させること、{metric name}\t{metric value}\t{epoch seconds}という出力を期待されていることが分かる。

Raspberry Piの温度自体はvcgencmd measure_tempで取得できる。
そこで、シェルスクリプトtemp.shを作成し整形してMackerelプラグインのフォーマットに合わせる。

#!/bin/bash

SECONDS=$(date '+%s')
NAME='temperature.cpu'
VALUE=$(vcgencmd measure_temp | grep -o -e "[0-9]\+\.[0-9]\+")
echo -e "${NAME}\t${VALUE}\t${SECONDS}"

作成したプラグインをmackerel-agent.confに追記することで、メトリクスを送信するようになる。
再起動が必要なので忘れずに

~~
[plugin.metrics.temp]
command = "/path/to/temp.sh"

モニターへの追加

Monitors → metric monitor → 作成したメトリクスを選択
warning、criticalの閾値を設定することで、アラートを飛ばすことができた。

4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?