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.

Sparkline

Rebuilt on Chart.js -- jquery-sparkline hasn't shipped a release since 2016. A sparkline is just a tiny chart with every axis and legend turned off.

An example of a simple line chart with one series.

<div class="wd-200 ht-70"><canvas id="sparkline1"></canvas></div>
new Chart(document.getElementById('sparkline1'), {
  type: 'line',
  data: {
    labels: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13],
    datasets: [{
      data: [1, 4, 4, 7, 5, 9, 10, 1, 4, 4, 7, 5, 9, 10],
      borderColor: '#0083CD',
      fill: false
    }]
  },
  options: {
    plugins: { legend: { display: false }, tooltip: { enabled: false } },
    scales: { y: { display: false }, x: { display: false } },
    elements: { point: { radius: 0 } }
  }
});

An example of a simple line chart with one series.

borderColor: '#0083CD',
backgroundColor: 'rgba(0,131,205,0.2)',
fill: true

An example of a simple bar chart with one series.

new Chart(document.getElementById('sparkline5'), {
  type: 'bar',
  data: {
    labels: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13],
    datasets: [{
      data: [3, 4, 4, 7, 5, 9, 10, 6, 4, 4, 7, 5, 9, 10],
      backgroundColor: '#0083CD'
    }]
  },
  options: {
    plugins: { legend: { display: false }, tooltip: { enabled: false } },
    scales: { y: { display: false, max: 12 }, x: { display: false } }
  }
});

An example of a stacked bar chart with two series.

new Chart(document.getElementById('sparkline7'), {
  type: 'bar',
  data: {
    labels: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
    datasets: [
      { data: [7,8,10,7,5,9,10,6,9,4,7,5,9,10,8], backgroundColor: '#0083CD' },
      { data: [4,5,6,7,4,5,8,7,6,6,4,7,6,4,7], backgroundColor: '#11546F' }
    ]
  },
  options: {
    plugins: { legend: { display: false }, tooltip: { enabled: false } },
    scales: {
      y: { display: false, stacked: true },
      x: { display: false, stacked: true }
    }
  }
});

An example of a pie chart with two series.

new Chart(document.getElementById('sparkline9'), {
  type: 'pie',
  data: {
    datasets: [{
      data: [7, 8, 10],
      backgroundColor: ['#F4C62B', '#F6931E', '#8CC63E']
    }]
  },
  options: {
    plugins: { legend: { display: false }, tooltip: { enabled: false } }
  }
});