• 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에서 엔터티 검색을 사용할 수 있습니다.

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

엔터티 검색보기

Copyright © 2024 New Relic Inc.

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