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.

Rickshaw Chart (Responsive)

Rebuilt on Chart.js -- Rickshaw hasn't shipped a release since 2016.

Below is the basic bar chart example.

new Chart(document.getElementById('chartBar1'), {
  type: 'bar',
  data: {
    labels: ['0', '1', '2', '3', '4'],
    datasets: [{
      data: [40, 49, 38, 30, 32],
      backgroundColor: '#26A2E2'
    }]
  },
  options: {
    scales: { y: { beginAtZero: true, max: 80 } }
  }
});

Below is the stacked bar chart example.

datasets: [
  { data: [20, 30, 10, 15, 10], backgroundColor: '#466C79' },
  { data: [10, 10, 15, 20, 12], backgroundColor: '#26A2E2' }
],
options: {
  scales: {
    y: { stacked: true },
    x: { stacked: true }
  }
}

Below are multiple bar chart example.

// Bars are grouped, not stacked, by default -- only set
// scales.x.stacked/scales.y.stacked to true if you want stacking.

Below is the line chart example.

type: 'line'

Below is the area chart example.

datasets: [{
  data: [40, 49, 38, 30, 32],
  fill: true,
  backgroundColor: 'rgba(38,162,226,.4)'
}]