| 123456789101112131415161718192021222324 |
- define([
- 'angular',
- ],
- function (angular) {
- 'use strict';
- var module = angular.module('grafana.controllers');
- module.controller('AdminStatsCtrl', function($scope, backendSrv) {
- $scope.init = function() {
- $scope.getStats();
- };
- $scope.getStats = function() {
- backendSrv.get('/api/admin/stats').then(function(stats) {
- $scope.stats = stats;
- });
- };
- $scope.init();
- });
- });
|