Commit 8cc912db authored by antirez's avatar antirez
Browse files

LATENCY GRAPH: filling under the curve is more readable.

parent e9055880
...@@ -182,7 +182,7 @@ sds latencyCommandGenSparkeline(char *event, struct latencyTimeSeries *ts) { ...@@ -182,7 +182,7 @@ sds latencyCommandGenSparkeline(char *event, struct latencyTimeSeries *ts) {
for (j = 0; j < LATENCY_GRAPH_COLS; j++) for (j = 0; j < LATENCY_GRAPH_COLS; j++)
graph = sdscatlen(graph,"-",1); graph = sdscatlen(graph,"-",1);
graph = sdscatlen(graph,"\n",1); graph = sdscatlen(graph,"\n",1);
graph = sparklineRender(graph,seq,LATENCY_GRAPH_COLS,4,SPARKLINE_NO_FLAGS); graph = sparklineRender(graph,seq,LATENCY_GRAPH_COLS,4,SPARKLINE_FILL);
freeSparklineSequence(seq); freeSparklineSequence(seq);
return graph; return graph;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment