Bird
0
0

Which of the following is the correct way to add a status widget in a dashboard configuration file?

easy📝 Configuration Q12 of 15
Agentic AI - Agent Observability
Which of the following is the correct way to add a status widget in a dashboard configuration file?
A"widgets": [{"type": "status", "agentId": "agent_01"}]
B"widgets": [{type: status, agentId: agent_01}]
C"widgets": [{"type": status, "agentId": agent_01}]
Dwidgets: [{"type": "status", "agentId": "agent_01"}]
Step-by-Step Solution
Solution:
  1. Step 1: Check JSON syntax

    Correct JSON requires keys and string values in double quotes.
  2. Step 2: Identify correct option

    "widgets": [{"type": "status", "agentId": "agent_01"}] uses proper JSON with quotes around keys and values.
  3. Final Answer:

    "widgets": [{"type": "status", "agentId": "agent_01"}] -> Option A
  4. Quick Check:

    Proper JSON syntax = "widgets": [{"type": "status", "agentId": "agent_01"}] [OK]
Quick Trick: JSON keys and string values need double quotes [OK]
Common Mistakes:
  • Missing quotes around keys or string values
  • Using single quotes instead of double quotes
  • Omitting commas between items

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Agentic AI Quizzes