Challenge - 5 Problems
Trend Analysis Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate2:00remaining
Identify the output of a trend data query command
You run the command to fetch temperature trends for the last hour in a SCADA system:
What is the expected output format?
scada-cli get-trend --tag temperature --duration 1h --format jsonWhat is the expected output format?
SCADA systems
scada-cli get-trend --tag temperature --duration 1h --format jsonAttempts:
2 left
💡 Hint
The command requests JSON format output for trend data.
✗ Incorrect
The command uses --format json, so the output is a JSON array of timestamped values.
🧠 Conceptual
intermediate1:30remaining
Understanding trend data aggregation intervals
In SCADA trend reporting, what does setting an aggregation interval to 15 minutes mean?
Attempts:
2 left
💡 Hint
Aggregation means combining data over time periods.
✗ Incorrect
Aggregation interval defines how raw data is grouped and summarized for reports.
🔀 Workflow
advanced2:30remaining
Order the steps to configure a new trend report in a SCADA system
Arrange these steps in the correct order to create a new trend report for pressure data:
Attempts:
2 left
💡 Hint
Start by selecting the data, then set time and aggregation before saving.
✗ Incorrect
First select the tag, then time range, then aggregation, finally save and generate.
❓ Troubleshoot
advanced2:00remaining
Diagnose why a trend report shows no data
A trend report for flow rate shows no data for the last 24 hours. Which is the most likely cause?
Attempts:
2 left
💡 Hint
Check if data is being recorded before reporting.
✗ Incorrect
If the tag does not record history, no trend data will be available.
✅ Best Practice
expert3:00remaining
Choose the best practice for trend data retention policy
What is the best practice for setting a trend data retention policy in a SCADA system?
Attempts:
2 left
💡 Hint
Balance storage use and data detail over time.
✗ Incorrect
Keeping raw data short-term and summaries long-term balances detail and storage.