users.js 400 B

1234567891011121314151617181920212223
  1. /* Licensed to the public under the Apache License 2.0. */
  2. 'use strict';
  3. 'require baseclass';
  4. return baseclass.extend({
  5. title: _('Users'),
  6. rrdargs: function(graph, host, plugin, plugin_instance, dtype) {
  7. return {
  8. title: "%H: Users (console logins)",
  9. vlabel: "count",
  10. data: {
  11. types: [ "users" ],
  12. options: {
  13. users: {
  14. title: "Users %di",
  15. }
  16. }
  17. }
  18. };
  19. }
  20. });