2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Gakken LEAPAdvent Calendar 2024

Day 17

Cloud Monitoringでログ監視をやってみた

Last updated at Posted at 2024-12-16

はじめに

どうも、@to-fmakです。最近、Cloud Monitoringでログ監視をやってみたので、設定手順を簡単に共有したいと思います。

ログベースの指標の作成

アラートを作成する前に、ログベースの指標を作成する必要があります。
「Cloud Monitoring」->「ログベースの指標」を開き、「指標の作成」をクリックします。

Screenshot 2024-11-21 at 15.27.07.png

指標タイプを選択し、詳細を入力します。

Screenshot 2024-11-21 at 15.27.38.png

ログベースの指標を定義し、フィルタを作成します。

Screenshot 2024-11-21 at 15.27.44.png

以下は、特定の Cloud Functions または Cloud Run サービスのエラーログを対象とするフィルタの例です。

(resource.type = "cloud_function"
resource.labels.function_name = "sample-function"
resource.labels.region = "asia-northeast1")
 OR
(resource.type = "cloud_run_revision"
resource.labels.service_name = "sample-function"
resource.labels.location = "asia-northeast1")
 severity>=ERROR

アラートの作成

ログベースの指標の作成後、該当指標を選択し、「指標に基づいた通知を作成する」をクリックします。

Screenshot 2024-11-21 at 15.28.20.png

アラート作成の画面が表示されるので、監視要件にしたがって設定していきます。

Screenshot 2024-11-25 at 17.38.27.png

参考URL

エンジニア募集

Gakken LEAP では教育をアップデートしていきたいエンジニアを絶賛大募集しています!!
ぜひお気軽にカジュアル面談へお越しください!!

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?