Memory Usage

32.3%
8,6,5,9,8,4,9,3,5,9

CPU Usage

140.05
4,3,5,7,12,10,4,5,11,7

Disk Usage

82.02%
1,2,1,3,2,10,4,12,7

Daily Traffic

62,201
3,12,7,9,2,3,4,5,2

No attachments yet.

No events scheduled today.

Morris Charts

Rebuilt on Chart.js -- Morris.js has had no release since 2015.

Below is the basic bar chart example.

new Chart(document.getElementById('morrisBar1'), {
  type: 'bar',
  data: {
    labels: ['2006', '2007', '2008', '2009', '2010'],
    datasets: [
      { label: 'Series A', data: [100, 75, 50, 75, 50], backgroundColor: '#5058AB' },
      { label: 'Series B', data: [90, 65, 40, 65, 40], backgroundColor: '#14A0C1' }
    ]
  }
});
scales: {
  y: { stacked: true },
  x: { stacked: true }
}
datasets: [
  { label: 'Series A', data: [100, 75, 50, 75], backgroundColor: '#5058AB' },
  { label: 'Series B', data: [90, 65, 40, 65], backgroundColor: '#14A0C1' },
  { label: 'Series C', data: [80, 75, 45, 85], backgroundColor: '#01CB99' }
]

Below is the basic line chart example.

new Chart(document.getElementById('morrisLine1'), {
  type: 'line',
  data: { ... }
});

Below is the basic area chart example.

new Chart(document.getElementById('morrisArea1'), {
  type: 'line',
  data: {
    datasets: [{ fill: true, backgroundColor: 'rgba(20,160,193,.5)', ... }]
  }
});

Below is the basic donut chart example.

new Chart(document.getElementById('morrisDonut1'), {
  type: 'doughnut',
  data: {
    labels: ['Men', 'Women', 'Kids'],
    datasets: [{
      data: [12, 30, 20],
      backgroundColor: ['#3D449C', '#268FB2', '#74DE00']
    }]
  }
});