#define COLOR_CACHE_HIT COLOR_GREEN
#define COLOR_CACHE_MISS COLOR_RED
+// Latency
+#define COLOR_LATENCY COLOR_LIGHT_BLUE
+
// Temperature
#define COLOR_TEMPERATURE COLOR_RED
PRINT_HEADER4(args, _("Current"), _("Average"), _("Minimum"), _("Maximum"));
// Draw the stddev area
- DRAW_STDDEV(args, "latency", "stddev", NULL, COLOR_DEFAULT);
+ DRAW_STDDEV(args, "latency", "stddev", NULL, COLOR_LATENCY);
// Draw the measured latency
- DRAW_LINE_WITH_LABEL(args, 1, "latency", NULL, COLOR_DEFAULT, 0, _("Latency"));
+ DRAW_LINE_WITH_LABEL(args, 1, "latency", NULL, COLOR_LATENCY, 0, _("Latency"));
PRINT_CAMM(args, "latency", NULL, SECONDS_HIGHRES);
PRINT_EMPTY_LINE(args);