• 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.

問題を作成する

New Relic REST API (v1) の使用 (EOL)

重要

New Relic REST API バージョン 1 はサポート終了 (EOL) に達し、機能しなくなります。機能を維持するには、v1 スクリプトを同等の NerdGraph に移行します。

ここでは、一般的なタスクの代替例をいくつか示します。

ユーザーがアクセスできるアカウントに関連する情報を取得するには:

actor {
organization {
accountManagement {
managedAccounts {
id
name
}
}
}
}

「アカウントの管理」を参照してください。

ユーザーがアクセスできるアプリケーションのリストを取得するには、NerdGraph のentitySearch を使用できます。

{
actor {
entitySearch(queryBuilder: {domain: APM, type: APPLICATION}) {
query
results {
entities {
name
entityType
guid
... on ApmApplicationEntityOutline {
accountId
}
}
}
}
}
}

「エンティティ検索」を参照してください。

Copyright © 2024 New Relic株式会社。

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