3 releases

0.5.8 Jan 15, 2023
0.5.2 May 10, 2022
0.5.0 May 9, 2022

#530 in Text processing

Download history 2109/week @ 2023-11-20 2086/week @ 2023-11-27 3519/week @ 2023-12-04 1814/week @ 2023-12-11 1809/week @ 2023-12-18 130/week @ 2023-12-25 1361/week @ 2024-01-01 2600/week @ 2024-01-08 2387/week @ 2024-01-15 2194/week @ 2024-01-22 2246/week @ 2024-01-29 2161/week @ 2024-02-05 1984/week @ 2024-02-12 1488/week @ 2024-02-19 2884/week @ 2024-02-26 2896/week @ 2024-03-04

9,291 downloads per month
Used in fqkit

MIT license

185KB
3K SLoC

lowcharts

Tool to draw low-resolution graphs in terminal.

Rust codecov dependency status Release

lowcharts is meant to be used in those scenarios where we have numerical data in text files that we want to display in the terminal to do a basic analysis.

An example would be the logs of a service (webserver, database, proxy, container orchestration, etc.) where times (or sizes) of requests are logged. In an ideal world you would have those logs accessible via a kibana (or similar) or those metrics exposed to a prometheus (or similar) and graphed in a grafana dashboard (or similar). But sometimes we need to cope with non ideal worlds, and troubleshoot a service with nothing more of what we can muster in a shell terminal.

Usage

Type lowcharts --help, or lowcharts PLOT-TYPE --help for a complete list of options.

Currently six basic types of plots are supported:

Bar chart for matches in the input

Since grep -c does not aggregate counts per pattern, this is maybe my most frequent use case.

This chart is generated using lowcharts matches --input database.log SELECT UPDATE DELETE INSERT DROP:

Simple bar chart with lowcharts

Histogram for numerical inputs

This chart is generated using python3 -c 'import random; [print(random.normalvariate(5, 5)) for _ in range(100000)]' | lowcharts hist:

Sample histogram with lowcharts

This was inspired by data-hacks. However, for some big log files I found that project was a lot slower than what I would like, and I found that a rust-compiled binary was better suited to my needs: easy to copy around in a hurry (no deps) and very fast.

Options for specifying ranges, chart sizes and input files are supported:

lowcharts hist --max 0.5 --intervals 10 --width 50 data.txt
Samples = 50090; Min = 0.000; Max = 0.499
Average = 0.181; Variance = 0.023; STD = 0.154
each ∎ represents a count of 484
[0.000 .. 0.050] [14545] ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
[0.050 .. 0.100] [ 6111] ∎∎∎∎∎∎∎∎∎∎∎∎
[0.100 .. 0.150] [ 4911] ∎∎∎∎∎∎∎∎∎∎
[0.150 .. 0.200] [ 4003] ∎∎∎∎∎∎∎∎
[0.200 .. 0.250] [ 3745] ∎∎∎∎∎∎∎
[0.250 .. 0.300] [ 3526] ∎∎∎∎∎∎∎
[0.300 .. 0.350] [ 3424] ∎∎∎∎∎∎∎
[0.350 .. 0.400] [ 3332] ∎∎∎∎∎∎
[0.400 .. 0.450] [ 3215] ∎∎∎∎∎∎
[0.450 .. 0.500] [ 3278] ∎∎∎∎∎∎

Above examples assume input files with a number per line. Options for figuring out where to look in the input file for values are supported by regex option. This example logs the time spent by nginx for all of 200K http responses ()

$ cat nginx*.log | lowcharts hist --regex ' 200 \d+ ([0-9.]+)' --intervals 10
Samples = 25080; Min = 0.004; Max = 0.049
Average = 0.008; Variance = 0.000; STD = 0.006
each ∎ represents a count of 228
[0.004 .. 0.009] [20569] ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
[0.009 .. 0.013] [ 1329] ∎∎∎∎∎
[0.013 .. 0.018] [  807] ∎∎∎
[0.018 .. 0.022] [ 1412] ∎∎∎∎∎∎
[0.022 .. 0.027] [  363]
[0.027 .. 0.031] [   27]
[0.031 .. 0.036] [  128]
[0.036 .. 0.040] [   22]
[0.040 .. 0.044] [  240]
[0.044 .. 0.049] [  183]

Command supports a --log-scale flag to use a logarithmic scale.

Time Histogram

This chart is generated using strace -tt ls -lR * 2>&1 | lowcharts timehist --intervals 10:

Sample plot with lowcharts

Things like lowcharts timehist --regex ' 404 ' nginx.log should work in a similar way, and would give you a glimpse of when and how many 404s are being triggered in your server.

The idea is to depict the frequency of logs that match a regex (by default any log that is read by the tool). The sub-command can autodetect the most common (in my personal and biased experience) datetime/timestamp formats: rfc 3339, rfc 2822, python %(asctime)s, golang default log format, nginx, rabbitmq, strace -t (or -tt, or -ttt), ltrace,... as long as the timestamp is present in the first line in the log and the format is consistent in all the lines that contain timestamp. It is ok to have lines with no timestamp. The consistency is required because of performance reasons: the 1st log line is the only one that triggers the heuristics needed to create an specialized datetime parser on the fly.

However, if you have a format that lowcharts cannot autodetected, you can specify it via command line flag. For instance, --format '%d-%b-%Y::%H:%M:%S'. Note that, as of today, you need to leave out the timezone part of the format string (the autodetection works fine with timezones).

Split Time Histogram

This adds up the time histogram and bar chart in a single visualization.

This chart is generated using strace -tt ls -lR 2>&1 | lowcharts split-timehist open mmap close read write --intervals 10:

Sample plot with lowcharts

This graph depicts the relative frequency of search terms in time.

Common terms histogram

Useful for plotting most common terms in input lines.

This sample chart is generated using strace ls -l 2>&1 | lowcharts common-terms --lines 8 -R '(.*?)\(':

Sample plot with lowcharts

The graph depicts the 8 syscalls most used by ls -l command, along with its number of uses and sorted. In general, using lowcharts common-terms is a handy substitute to commands of the form awk ... | sort | uniq -c | sort -rn | head.

X-Y Plot

This chart is generated using cat ram-usage | lowcharts plot --height 20 --width 50:

Sample plot with lowcharts

Note that x axis is not labelled. The tool splits the input data by chunks of a fixed size and then the chart display the averages of those chunks. In other words: grouping data by time is not (yet?) supported; you can see the evolution of a metric over time, but not the speed of that evolution.

There is regex support for this type of plots.

Installing

Via release

Go over https://github.com/juan-leon/lowcharts/releases/ and download the binary you want. Decompress the file and copy the binary to your path.

Via local compilation

$ git clone https://github.com/juan-leon/lowcharts
$ cd lowcharts
$ cargo install --path .

Via AUR

Arch-Linux users can install the lowcharts, lowcharts-bin or lowcharts-git AUR package.

Via debian package

If you are using a debian based Linux distribution, you may download a debian file from https://github.com/juan-leon/lowcharts/releases/ for your architecture. Then you can install it via dpkg -i.

Using it as a library

lowcharts can be used as a library by any code that needs to display text based charts.

[dependencies]
lowcharts = "*"

Example:

use lowcharts::plot;

let vec = &[-1.0, -1.1, 2.0, 2.0, 2.1, -0.9, 11.0, 11.2, 1.9, 1.99];
// Plot a histogram of the above vector, with 4 buckets and a precision
// choosen by library
let options = plot::HistogramOptions { intervals: 4, ..Default::default() };
let histogram = plot::Histogram::new(vec, options);
print!("{}", histogram);

You can disable coloring by doing:

// use yansi::Paint;
Paint::disable();

You can find the documentation here.

Contributing

Feedback, ideas and pull requests are welcomed.

Dependencies

~6.5–8.5MB
~145K SLoC