0
0
Agentic_aiml~20 mins

Dashboard design for agent monitoring in Agentic Ai - Practice Problems & Coding Challenges

Choose your learning style8 modes available
Challenge - 5 Problems
🎖️
Agent Monitoring Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 conceptual
intermediate
2:00remaining
Key Metrics for Agent Monitoring Dashboard

Which of the following metrics is most important to display on a dashboard monitoring multiple AI agents' health and performance?

ACPU usage, memory consumption, and response latency of each agent
BNumber of user clicks on the dashboard interface
CTotal number of agents deployed without status details
DColor scheme preferences of the dashboard users
Attempts:
2 left
command output
intermediate
2:00remaining
Output of Agent Status Query Command

What is the output of the following command querying agent statuses?

Agentic_ai
agentctl status --all --format json
AError: Unknown command 'agentctl'
B[{"agent_id": "a1", "status": "active"}, {"agent_id": "a2", "status": "inactive"}]
C{"agent_id": "a1", "status": "active"}
D["a1", "a2", "a3"]
Attempts:
2 left
configuration
advanced
2:30remaining
Configuring Alert Thresholds for Agent Latency

Which configuration snippet correctly sets an alert to trigger if any agent's response latency exceeds 500ms?

A
alerts:
  latency_threshold_ms: 500
  trigger_on: agent_cpu_usage
  action: notify_admin
B
alerts:
  trigger_on: agent_response_latency
  latency_threshold: 'five hundred'
  action: notify_admin
C
alerts:
  latency_threshold_ms: 500
  action: notify_admin
D
alerts:
  latency_threshold_ms: 500
  trigger_on: agent_response_latency
  action: notify_admin
Attempts:
2 left
troubleshooting
advanced
2:30remaining
Troubleshooting Missing Agent Data on Dashboard

After deploying the dashboard, some agents show no data. What is the most likely cause?

ADashboard refresh interval is set to 1 second
BDashboard color scheme is incompatible with agent data format
CAgents are not sending telemetry data due to network issues
DAgent IDs are too long to display on the dashboard
Attempts:
2 left
workflow
expert
3:00remaining
Steps to Add a New Agent to the Monitoring Dashboard

What is the correct order of steps to add a new AI agent to the monitoring dashboard?

A1,2,3,4
B1,3,2,4
C2,1,3,4
D3,1,2,4
Attempts:
2 left