アイドル状態のリソースに関する推奨事項を表示して適用する


このドキュメントでは、Persistent Disk ボリューム、IP アドレス、カスタム ディスク イメージのアイドル状態のリソースの推奨事項を表示して適用する方法について説明します。

Compute Engine は、アイドル状態の Persistent Disk ボリューム、IP アドレス、カスタム ディスク イメージを特定し、無駄を最小限に抑えて不要な費用を回避するための推奨事項を提供します。

アイドル状態の仮想マシン(VM)インスタンスの推奨事項については、アイドル状態の VM の推奨事項を表示して適用するをご覧ください。

始める前に

  • まだ設定していない場合は、認証を設定します。認証とは、Google Cloud のサービスと API にアクセスするために ID を確認するプロセスです。ローカル開発環境からコードまたはサンプルを実行するには、次のいずれかのオプションを選択して Compute Engine に対する認証を行います。

    Select the tab for how you plan to use the samples on this page:

    Console

    When you use the Google Cloud console to access Google Cloud services and APIs, you don't need to set up authentication.

    gcloud

    1. Install the Google Cloud CLI, then initialize it by running the following command:

      gcloud init
    2. Set a default region and zone.
    3. REST

      このページの REST API サンプルをローカル開発環境で使用するには、gcloud CLI に指定した認証情報を使用します。

        Install the Google Cloud CLI, then initialize it by running the following command:

        gcloud init

      詳細については、Google Cloud 認証ドキュメントの REST を使用して認証するをご覧ください。

料金

アイドル状態のリソースの推奨事項の使用に伴う費用は発生しません。

推奨の生成

リソースが 15 日間 VM などのリソースに接続されていない場合、Recommender はそのリソースをアイドル状態として分類します。リソースをアイドル状態に分類する条件と推奨されるアクションの詳細については、次の表をご覧ください。

リソース リソースがアイドル状態に分類される条件 推奨される対応 コスト削減
Persistent Disk 次のすべてに該当する必要があります。
  • Persistent Disk が 15 日以上前に作成されている。
  • Persistent Disk が VM にアタッチされたことがない。
  • Persistent Disk が空白です。
  • Persistent Disk が GKE Pod にバインドされていない。
削除 そのディスクの費用を 100% 削減できます。詳細については、ディスクとイメージの料金をご覧ください。
Persistent Disk 次のすべてに該当する必要があります。
  • Persistent Disk が 15 日以上切断されている。
  • Persistent Disk が GKE Pod にバインドされていない。
Persistent Disk のスナップショットを作成して削除する このディスクのメンテナンス コストを 35% から 92% 削減できます。詳細については、ディスクとイメージの料金をご覧ください。
カスタム イメージ 次のすべてに該当する必要があります。
  • イメージがディスクの作成に 15 日以上使用されていない。
  • イメージがどのインスタンス テンプレートでも使用されていない。
削除 そのイメージの費用を 100% 削減できます。詳細については、ディスクとイメージの料金をご覧ください。
外部 IP アドレス IP アドレスが 15 日以上リソースに接続されていない。 削除 IP アドレスの費用を 100% 削減できます。詳細については、外部 IP アドレスの料金をご覧ください。

推奨の頻度

アイドル状態のリソースに対する推奨は、リソースの作成から 15 日後に始まり、24 時間ごとに更新されます。

推奨の表示

アイドル状態のリソースに対する推奨を表示するには、gcloud CLI または REST を使用します。

Console

Google Cloud コンソールで、[すべての推奨事項] ページに移動します。

[推奨事項] に移動

アイドル状態のリソースは、[未使用の Compute Engine リソース] の下に表示されます。

gcloud

--recommender=RECOMMENDER_ID フラグを指定して、gcloud recommender recommendations list コマンドを使用します。

gcloud recommender recommendations list \
    --project=PROJECT_ID \
    --location=LOCATION \
    --recommender=RECOMMENDER_ID \
    --format=yaml

次のように置き換えます。

  • PROJECT_ID: オブジェクトの ID。
  • LOCATION: 推奨事項を取得するリソースが含まれているロケーション。
    • Persistent Disk ボリュームの場合は、ゾーンまたはリージョンを指定します(例: us-central1-c)。
    • IPの場合:
      • リージョン IP を一覧表示するには、リージョンを指定する必要があります。
      • グローバル IP を一覧表示するには、global を指定します。リージョン IP アドレス リソースとグローバル IP アドレス リソースの詳細については、IP アドレスをご覧ください。
    • カスタム イメージの場合は、global を指定します。
  • RECOMMENDER_ID: Recommender の ID
    • ディスクの場合は、google.compute.disk.IdleResourceRecommender を指定します。
    • イメージの場合は、google.compute.image.IdleResourceRecommender を指定します。
    • IP の場合は、google.compute.address.IdleResourceRecommender を指定します。

たとえば、次のコマンドは、test-projectus-central1-c にあるアイドル状態の Persistent Disk に対する推奨事項を一覧表示します。

gcloud recommender recommendations list \
    --project=test-project \
    --location=us-central1-c \
    --recommender=google.compute.disk.IdleResourceRecommender \
    --format=yaml


---
content:
    operationGroups:
    - operations:
      - action: add
        resource: //compute.googleapis.com/projects/test-project/global/snapshots/$snapshot-name
        resourceType: compute.googleapis.com/Disk
        path: /
        value:
        - name: $snapshot-name
          sourceDisk: projects/test-project/locations/us-central1-c/disks/pd-name
          storageLocations: us-central1
      - action: remove
        resource: //compute.googleapis.com/projects/test-project/zones/us-central1-c/disks/pd-name
        resourceType: compute.googleapis.com/Disk
        path: /
description: Save cost by snapshotting and then deleting idle persistent disk 'pd-name'
name: projects/test-project/locations/us-central1-c/recommenders/google.compute.disk.IdleResourceRecommender/recommendations/0fd31b24-cc05-4132-8431-ed54a22dd4f1
recommenderSubtype: SNAPSHOT_AND_DELETE_DISK
lastRefreshTime:
  seconds: 1543912652
primaryImpact:
  category: COST
  costProjection:
    cost:
      currencyCode: USD
      units: '-50'
    duration:
      seconds: 2592000
stateInfo: ACTIVE
etag: "cb0e6ac2cfc0b591"

gcloud CLI で推奨事項を表示する方法をご確認ください。

REST

recommendations.list メソッドを呼び出し、Recommender ID を指定します(例: google.compute.disk.IdleResourceRecommender)。

GET https://recommender.googleapis.com/v1/projects/PROJECT_ID/locations/LOCATION/recommenders/RECOMMENDER_ID/recommendations

次のように置き換えます。

  • PROJECT_ID: オブジェクトの ID。
  • LOCATION: 推奨事項を取得するリソースが含まれているロケーション。
    • Persistent Disk ボリュームの場合は、ゾーンまたはリージョンを指定します(例: us-central1-c)。
    • IPの場合:
      • リージョン IP を一覧表示するには、リージョンを指定する必要があります。
      • グローバル IP を一覧表示するには、global を指定します。リージョン IP アドレス リソースとグローバル IP アドレス リソースの詳細については、IP アドレスをご覧ください。
    • カスタム イメージの場合は、global を指定します。
  • RECOMMENDER_ID: Recommender の ID
    • ディスクの場合は、google.compute.disk.IdleResourceRecommender を指定します。
    • イメージの場合は、google.compute.image.IdleResourceRecommender を指定します。
    • IP の場合は、google.compute.address.IdleResourceRecommender を指定します。

次の例は、curl を使用してリクエストを送信する方法と、関連するサンプル レスポンスを示しています。

PROJECT_ID=test-project
LOCATION=us-central1-c
RECOMMENDER_ID=google.compute.disk.IdleResourceRecommender

curl -H "Authorization: Bearer $(gcloud auth print-access-token)" \
  https://recommender.googleapis.com/v1/projects/$PROJECT_ID/locations/$LOCATION/recommenders/$RECOMMENDER_ID/recommendations

アイドル状態の永続ディスクの推奨事項の JSON レスポンスの例:

{
 "description" : "Save cost by deleting idle persistent disk 'pd-name'",
 "name": "projects/test-project/locations/us-central1-c/recommenders/"
         "google.compute.disk.IdleResourceRecommender/"
         "recommendations/0fd31b24-cc05-4132-8431-ed54a22dd4f1",
 "recommenderSubtype" : "SNAPSHOT_AND_DELETE_DISK",
 "lastRefreshTime": {
   "seconds": 1543912652
 },
 "primaryImpact": {
   "category": COST,
   "costProjection": {
    "cost": {"currencyCode": "USD", "units": -50},
    "duration": { "seconds": 2592000 }
   }
 },
 "stateInfo": ACTIVE,
 "content": {
   "operationGroups" : [
    {
      "operations" : [
       {
         "action": "add",
         "resourceType": "compute.googleapis.com/Disk",
         "resource" : "//compute.googleapis.com/projects/test-project/global/snapshots/$snapshot-name",
         "value": {
           "name": "$snapshot-name",
           "sourceDisk": "projects/test-project/zones/us-central1-c/disks/pd-name",
           "storageLocations": ["us-central1"],
         }
       },
       {
         "action": "remove",
         "resourceType": "compute.googleapis/Disk",
         "resource": "//compute.googleapis.com/projects/test-project/"
                     "zones/us-central1-c/disks/pd-name"
       }
      ]
    }
   ]
 },
 "associatedInsights": [
    {
      "insight": "projects/test-project/locations/us-central1-c/insightTypes/google.compute.disk.IdleResourceInsight/insights/31326443-bcc3-4776-9b86-48879fddb656"
    }
  ],
 "etag": "cb0e6ac2cfc0b591"
}

推奨レスポンスの解釈

gcloud CLI または REST を介して受信する各推奨には、推奨を適用するために連続して実行できるオペレーション グループが含まれています。たとえば、アイドル状態の Persistent Disk の推奨のオペレーション グループには、次の 1 つまたは 2 つのオペレーションが含まれます。

  • アイドル状態の永続ディスクにデータが保存されている場合は、永続ディスクをバックアップするスナップショットを作成する add オペレーションが推奨事項に含まれています。次に例を示します。

       {
         "action": "add",
         "resourceType": "compute.googleapis.com/Disk",
         "resource" : "//compute.googleapis.com/projects/test-project/global/snapshots/$snapshot-name",
         "path": "/",
         "value": {
           "name": "$snapshot-name",
           "sourceDisk": "projects/test-project/zones/us-central1-c/disks/pd-name",
           "storageLocations": ["us-central1"]
         }
       }
    
  • アイドル状態の Persistent Disk を完全に削除する remove オペレーション。次に例を示します。

       {
         "action": "remove",
         "resourceType": "compute.googleapis.com/Disk",
         "resource" : "//compute.googleapis.com/projects/test-project/zones/us-central1-c/disks/pd-name",
         "path": "/"
       }
    

アイドル状態のリソースに対する推奨事項の分析情報を表示する

Recommender がリソースの分析情報に基づいて推奨事項を生成します。リソースに関する分析情報を表示することで、リソースに関する詳細(リソースが VM から切断されていた期間、Persistent Disk が空かどうかなど)を確認できます。

推奨事項を生成した分析情報を表示するには、gcloud CLI または REST を使用します。

gcloud

insights list コマンドを使用します。

gcloud beta recommender insights list --project=PROJECT_NAME \
  --location=LOCATION --insight-type=INSIGHT_TYPE

次のように置き換えます。

  • LOCATION: 分析情報を取得するリソースが含まれるロケーション。
    • PD の場合、ゾーンまたはリージョンを指定します(例: us-central1-c)。
    • IPの場合:
      • リージョン IP を一覧表示するには、リージョンを指定する必要があります。
      • グローバル IP を一覧表示するには、global を指定します。リージョン IP アドレス リソースとグローバル IP アドレス リソースの詳細については、IP アドレスをご覧ください。
    • カスタム イメージの場合は、global を指定します。
  • INSIGHT_TYPE: 分析情報の種類 の ID
    • ディスクの場合は、google.compute.disk.IdleResourceInsight を指定します。
    • イメージの場合は、google.compute.image.IdleResourceInsight を指定します。
    • IP の場合は、google.compute.address.IdleResourceInsight を指定します。

REST

insights.list メソッドを使用します。

GET https://recommender.googleapis.com/v1beta1/projects/PROJECT_ID/locations/LOCATION/insightTypes/INSIGHT_TYPE/insights

次のように置き換えます。

  • PROJECT_ID: オブジェクトの ID。
  • LOCATION: 分析情報を取得するリソースが含まれるロケーション。
    • Persistent Disk ボリュームの場合は、ゾーンまたはリージョンを指定します(例: us-central1-c)。
    • IPの場合:
      • リージョン IP を一覧表示するには、リージョンを指定する必要があります。
      • グローバル IP を一覧表示するには、global を指定します。リージョン IP アドレス リソースとグローバル IP アドレス リソースの詳細については、IP アドレスをご覧ください。
    • カスタム イメージの場合は、global を指定します。
  • INSIGHT_TYPE: 分析情報タイプの ID
    • ディスクの場合は、google.compute.disk.IdleResourceInsight を指定します。
    • イメージの場合は、google.compute.image.IdleResourceInsight を指定します。
    • IP の場合は、google.compute.address.IdleResourceInsight を指定します。

アイドル状態の Persistent Disk リソースに関する分析情報のレスポンスの例を次に示します。

{
  "name": "projects/test-project/locations/us-central1-c/insightTypes/google.compute.disk.IdleResourceInsight/insights/0ec21a13-bb04-3121-7321-dc43a11cc3e2",
  "description": "Disk 'pd-name' in zone 'us-central1-c' was last used 17 days ago. Consider taking snapshot and delete it.",
  "targetResources": [
    "//compute.googleapis.com/projects/test-project/zones/us-central1-c/disks/pd-name"
  ],
  "insightSubtype": "IDLE_DISK",
  "content": {
    "diskLastUseTime": "2019-10-01 13:00:00",
    "isBlank": false,
  },
  "lastRefreshTime": "2019-10-10 13:00:00",
  "observationPeriod": "15 days",
  "stateInfo": {
    "state": "ACTIVE"
  },
  "category": "COST",
  "etag": "fds421j2349",
  "associatedRecommendations": [
    {
      "projects/test-project/locations/us-central1-c/recommenders/"
      "google.compute.disk.IdleResourceRecommender/"
      "recommendations/0fd31b24-cc05-4132-8431-ed54a22dd4f1"
    }
  ]
}

サンプルのレスポンスには次のフィールドがあります。

  • diskLastUseTime: ディスクが VM に最後に接続した時刻。ディスクが VM に接続されていない場合は、ディスクの作成時刻が設定されます。
  • isBlank: ディスクが空で、VM に接続していない場合、このフィールドに true が設定されます。それ以外の場合は false です。

分析情報の詳細については、リファレンス ドキュメントをご覧ください。

アイドル状態のリソースの推奨の適用

アイドル状態のリソースに関する推奨を受け取り、その推奨を適用する場合は、次のセクションの手順に沿って操作します。

アイドル状態の IP アドレスの削除

addresses.delete メソッドgcloud compute addresses delete コマンド、または静的外部 IP アドレスを解放するのドキュメントをご覧ください。

アイドル状態のカスタム イメージの削除

images.delete メソッドgcloud compute images delete コマンドイメージの削除に関するドキュメントをご覧ください。

アイドル状態の Persistent Disk の推奨事項を適用する

削除する前に Persistent Disk のスナップショットを作成する必要がある場合は、永続ディスク スナップショットの作成をご覧ください。

アイドル状態の Persistent Disk を削除するには、gcloud compute disks delete コマンドをご覧ください。

スナップショットからデータを復元し、永続ディスクを再作成する方法については、スナップショットの復元をご覧ください。