monitoring-plugins
monitoring-plugins copied to clipboard
ASCII-Bars for Percentages?
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 /* ____ */ "____";