An IT operations team monitors 200 servers. Each server reports CPU utilization (0-100%) every five minutes for the past year. The team wants to visualize the data to identify servers that are consistently over 80% utilization and detect any unusual spikes. They have a large dataset with 100,000+ records per server. The current visualization is a single scatter plot with CPU utilization on the y-axis, time on the x-axis, and each server as a different colored point. The chart is extremely cluttered, with points overlapping and colors indistinguishable. What should the team do to improve the visualization?
Heatmaps compactly show high-density data; small multiples allow per-server trend analysis without overlapping.
Why this answer
Option D is correct because using heatmaps or small multiples (trellis charts) reduces clutter for high-density data. Option A is wrong because increasing marker size worsens overlap. Option B is wrong because a single line chart would be even more cluttered with 200 lines.
Option C is wrong because trend lines remove detail needed for spike detection.