Logo Passei Direto
Buscar

Pedagogia

Outros
An engineer is building a dashboard to visualize the number of alerts from various sources. One of the widgets from the dashboard is shown in the image below:


A circular chart showing alert distribution with 148 total alerts. The chart is divided into segments with different colors representing different alert types. The legend on the right lists the alert types and their counts: 112 Large JPG Upload, 4 HTTP Requests to Suspicious IP, 12 Suspicious port scan, and 2 Large JPG Upload HTTPS.


The engineer wants to configure a drilldown on this widget to allow dashboard users to select any of the alert names and view those alerts with additional relevant details. The engineer has configured the following XQL query to meet the requirement:
dataset = alerts
| fields alert_name, description, alert_source, severity, original_tags, alert_id, incident_id
| filter alert_name $\$=
| sort desc _time
How will the engineer complete the third line of the query (filter alert_name =) to allow dynamic filtering on a selected alert name?
A. $\$ y \_$axis.value
B. $\$ x \_$axis.value
C. $\$ x \_$axis.name
D. $\$ y \_$axis.name
User badge image
Pedagogiando

há 2 meses

Respostas

User badge image

Ed Verified user icon

há 2 meses

Para completar a terceira linha da consulta XQL e permitir a filtragem dinâmica com base no nome do alerta selecionado, precisamos entender como as variáveis dinâmicas funcionam no contexto do dashboard. Analisando as opções: A. \$ y \_$axis.value - Geralmente, isso se refere ao valor do eixo Y, que não é o que estamos buscando para filtrar pelo nome do alerta. B. \$ x \_$axis.value - Isso se refere ao valor do eixo X, que também não é diretamente relacionado ao nome do alerta. C. \$ x \_$axis.name - Esta opção se refere ao nome do eixo X, que pode ser relevante se o eixo X estiver representando os nomes dos alertas. D. \$ y \_$axis.name - Isso se refere ao nome do eixo Y, que não é o que estamos buscando para filtrar pelo nome do alerta. Dado que o objetivo é filtrar pelo nome do alerta selecionado, a opção que melhor se encaixa é: C. \$ x \_$axis.name Essa opção permite que o filtro seja aplicado dinamicamente com base no nome do alerta que o usuário selecionou no gráfico.

Essa resposta te ajudou?

0
Dislike0

Ainda com dúvidas?

Envie uma pergunta e tenha sua dúvida de estudo respondida!

Essa pergunta também está no material:

Mais perguntas desse material

Mais conteúdos dessa disciplina