monitoring-plugins icon indicating copy to clipboard operation
monitoring-plugins copied to clipboard

ASCII-Bars for Percentages?

Open NavidSassan opened this issue 3 years ago • 0 comments

In GitLab by @markuslf on Jan 2, 2022, 15:09

Could be a nice feature: visualize percentages using ASCII-Bars in Text Output like so:

if (value > 80)
    return /* ▂▄▆█ */ "\342\226\202\342\226\204\342\226\206\342\226\210";
else if (value > 55)
    return /* ▂▄▆_ */ "\342\226\202\342\226\204\342\226\206_";
else if (value > 30)
    return /* ▂▄__ */ "\342\226\202\342\226\204__";
else if (value > 5)
    return /* ▂___ */ "\342\226\202___";
else
    return /* ____ */ "____";

NavidSassan avatar Jan 02 '22 14:01 NavidSassan