by Mandy Doward - 25/4/2018

The following question was put to me last week:

“In the following table there are month on month totals (perhaps for sales). I would like to show the red, yellow and green trend arrows against each value to show the change against the previous month’s value. Using the same logic I need to show the same coloured arrows for the same data expressed as a percentage change.”

In other words, changing this chart...


by Mandy Doward - 18/8/2016

System time changes can cause major problems to applications and business data. It is extrememly important that any system time changes are planned and explained.

The following command lines can be used to carry out a quick check to see how manu times the system time has been changed.

 

On a CentOS/RHEL version 6 or equivalent:

grep -c “Time has been changed” /var/log/messages

 

On a CentOS/RHEL version 7 or equivalent:

journalctl | grep -c "Time has been changed"

 


Pages