1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

前回の投稿で「Azure Log Analytics のサマリールール」を取り扱いました。

執筆時点ではまだプレビューということもあり、サマリールールリソースに対する操作は REST API で行う必要がありました。

この投稿では、Postman を使って Entra ID ユーザーアカウント で Azure REST API を呼び出します。

※忘れてしまうので、備忘録として残しておく。

アクセストークンを取得する

Azure ポータルにサインインし、「Azure Cloud Shell」を開きます。

Azure PowerShell の場合

※[環境セレクター]で「PowerShell」に切り替えます。

Get-AzAccessToken を実行します。

出力結果から Token の値をコピーします。

image.png

Azure CLI の場合

※[環境セレクター]で「Bush」に切り替えます。

az account get-access-token を実行します。

出力結果から accessToken の値をコピーします。

image.png

Azure REST API を呼び出す

集計ルールを表示する」に記載されている API を呼び出してみます。

Postman から Azure REST API を呼び出す

Postman を開き、以下の値を入力して、[送信] ボタンをクリックします。

  • 送信先
項目 設定値 (例)
メソッド GET
URL https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourcegroup}/providers/Microsoft.OperationalInsights/workspaces/{workspace}/summarylogs?api-version=2023-01-01-preview
※Log Analytics ワークスペース内のすべてのサマリールールの構成を取得
{subscriptionId},{resourcegroup},{workspace} は、環境に合わせて置換
  • ヘッダー タブ
キー 設定値 (例)
Authorization Bearer {accessToken}
{accessToken} は、前述で取得したアクセストークンに置換
Content-Type application/json

レスポンスを確認する

下図のとおり、すべてのサマリールールの構成が返ってきました。

image.png

おわりに

以下の操作についても、同じように行うことができます。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?