• /
  • ログイン
  • 無料アカウント

NerdGraph tutorial: List and revoke live chart URLs

You can list and revoke publicly accessible live chart URLs using queries and mutations in NerdGraph.

To do so:

  1. Go to the GraphiQL explorer.
  2. List all live chart URLs created within your New Relic account.
  3. Revoke any live chart URL you want to.

ヒント

See our docs to create public live charts.

List all live chart URLs

Use the following query to retrieve a list of existing live chart URLs:

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

Revoke any live chart URL

Use the following query to revoke the live chart URL you specify:

mutation {
dashboardWidgetRevokeLiveUrl(uuid: "<enter-the-UUID-of-the-live-chart>") {
uuid
errors {
description
type
}
}
}

その他のヘルプ

さらに支援が必要な場合は、これらのサポートと学習リソースを確認してください:

問題を作成するこのページを編集する
Copyright © 2020 New Relic Inc.