irq.js 420 B

12345678910111213141516171819202122
  1. /* Licensed to the public under the Apache License 2.0. */
  2. 'use strict';
  3. 'require baseclass';
  4. return baseclass.extend({
  5. title: _('Interrupts'),
  6. rrdargs: function(graph, host, plugin, plugin_instance, dtype) {
  7. return {
  8. title: "%H: Interrupts",
  9. vlabel: "Issues/s",
  10. number_format: "%5.0lf",
  11. data: {
  12. types: [ "irq" ],
  13. options: {
  14. irq: { title: "IRQ %di", noarea: true }
  15. }
  16. }
  17. };
  18. }
  19. });