0
0
SCADA systemsdevops~20 mins

Trend analysis and reporting in SCADA systems - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Trend Analysis Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate
2: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:

scada-cli get-trend --tag temperature --duration 1h --format json

What is the expected output format?
SCADA systems
scada-cli get-trend --tag temperature --duration 1h --format json
AError: Unknown command 'get-trend'
Btemperature=22.5;22.7;22.9
C[{"timestamp": "2024-06-01T10:00:00Z", "value": 22.5}, {"timestamp": "2024-06-01T10:05:00Z", "value": 22.7}]
D<trend><point time="10:00">22.5</point></trend>
Attempts:
2 left
💡 Hint
The command requests JSON format output for trend data.
🧠 Conceptual
intermediate
1:30remaining
Understanding trend data aggregation intervals
In SCADA trend reporting, what does setting an aggregation interval to 15 minutes mean?
AThe system collects data only once every 15 minutes.
BData points are averaged or summarized every 15 minutes before reporting.
CThe trend report shows exactly 15 data points regardless of duration.
DData older than 15 minutes is automatically deleted.
Attempts:
2 left
💡 Hint
Aggregation means combining data over time periods.
🔀 Workflow
advanced
2: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:
A3,1,2,4
B2,1,3,4
C1,3,2,4
D1,2,3,4
Attempts:
2 left
💡 Hint
Start by selecting the data, then set time and aggregation before saving.
Troubleshoot
advanced
2: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?
AThe flow rate tag is not configured to record historical data.
BThe aggregation interval is set too low (e.g., 1 second).
CThe report time range is set to future dates.
DThe SCADA system is offline but still shows old data.
Attempts:
2 left
💡 Hint
Check if data is being recorded before reporting.
Best Practice
expert
3: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?
AKeep detailed raw data for a short period and aggregated summaries for longer periods.
BStore all raw data indefinitely without aggregation.
CDelete all trend data after 7 days to save storage.
DOnly keep aggregated data and discard raw data immediately.
Attempts:
2 left
💡 Hint
Balance storage use and data detail over time.