• EnglishEspañol日本語한국어Português
  • Inicia sesiónComenzar ahora

Te ofrecemos esta traducción automática para facilitar la lectura.

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.

Crea una propuesta

Tutorial de NerdGraph: enumerar y revocar URL de gráficos en vivo

Puede enumerar y revocar las URL de gráficos en vivo de acceso público mediante consultas y mutaciones en NerdGraph.

Para hacerlo:

  1. Vaya al explorador GraphiQL.
  2. Enumere todas las URL de gráficos en vivo creadas dentro de su cuenta New Relic.
  3. Revoca cualquier URL de gráfico en vivo que desees.

Sugerencia

Consulte nuestros documentos para crear gráficos públicos en vivo.

Enumere todas las URL de gráficos en vivo

Utilice la siguiente consulta para recuperar una lista de URL de gráficos en vivo existentes:

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

Revocar cualquier URL de gráfico en vivo

Utilice la siguiente consulta para revocar la URL del gráfico en vivo que especifique:

mutation {
dashboardWidgetRevokeLiveUrl(uuid: "<enter-the-UUID-of-the-live-chart>") {
uuid
errors {
description
type
}
}
}
Copyright © 2024 New Relic Inc.

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