• EnglishEspañol日本語한국어Português
  • ログイン今すぐ開始

この機械翻訳は、参考として提供されています。

In the event of any inconsistency between the English version and the translated version, the English versionwill take priority. Please visit this page for more information.

問題を作成する

NerdGraphチュートリアル。ライブチャートのURLをリストアップしたり、取り消したりする

NerdGraph のクエリとミューテーションを使って、一般にアクセス可能なライブチャートのURLをリストアップしたり、取り消したりすることができます。

そのためには

  1. GraphiQL エクスプローラー にアクセスしてください。
  2. New Relic アカウント内に作成されたすべてのライブチャート URL をリストアップします。
  3. 好きなライブチャートのURLをリボークする

ヒント

公開ライブ チャートを作成するには、ドキュメントを参照してください。

すべてのライブチャートのURLを一覧表示

既存のライブチャートのURLの一覧を取得するには、以下のクエリを使用します。

{
actor {
dashboard {
liveUrls {
liveUrls {
title
url
createdAt
type
}
errors {
description
}
}
}
}
}

任意のライブチャートのURLを取り消す

指定したライブチャートのURLを失効させるには、以下のクエリを使用します。

mutation {
dashboardWidgetRevokeLiveUrl(uuid: "<enter-the-UUID-of-the-live-chart>") {
uuid
errors {
description
type
}
}
}
Copyright © 2024 New Relic株式会社。

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.