0
0
Expressframework~20 mins

Performance monitoring basics in Express - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Performance Monitoring Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate
1:30remaining
Understanding CPU usage output from a monitoring tool
You run a command to check CPU usage on a server and get this output:
CPU Usage: 85%

What does this output mean?
AThe CPU is idle 85% of the time
BThe CPU temperature is 85 degrees
CThe CPU is busy 85% of the time
DThe CPU usage is below 15%
Attempts:
2 left
💡 Hint
CPU usage shows how busy the processor is, not temperature or idle time.
🧠 Conceptual
intermediate
1:30remaining
Purpose of monitoring memory usage in applications
Why is it important to monitor memory usage in a running application?
ATo check disk space availability
BTo see how fast the CPU is running
CTo measure network speed
DTo check if the application is using too much memory and might crash
Attempts:
2 left
💡 Hint
Memory issues can cause crashes or slowdowns.
🔀 Workflow
advanced
2:00remaining
Steps to set up basic performance monitoring on a Linux server
Which sequence correctly describes the steps to set up basic performance monitoring using common Linux tools?
A2,1,3,4
B1,2,3,4
C1,3,2,4
D4,1,2,3
Attempts:
2 left
💡 Hint
Think about installing first, then running, analyzing, and alerting last.
Troubleshoot
advanced
1:30remaining
Identifying cause of high disk I/O in monitoring logs
Your monitoring logs show very high disk I/O on a server. Which of these is the most likely cause?
AA process is reading and writing large files frequently
BThe CPU is overheating
CThe network connection is slow
DThe server has low memory usage
Attempts:
2 left
💡 Hint
Disk I/O relates to reading and writing data on disk.
Best Practice
expert
2:00remaining
Choosing the best metric to monitor for web server responsiveness
Which metric is best to monitor to understand if a web server is responding quickly to user requests?
AAverage response time per request
BCPU temperature
CDisk space usage
DNumber of open network ports
Attempts:
2 left
💡 Hint
Think about what shows how fast the server replies to users.