angular.module('adagios.tactical.top_alert_producers', ['ngRoute' ]) .controller('TacticalTopAlertProducers', ['$scope', '$http', function($scope, $http) { $scope.hosts = [{"host_name": "server-01", "problems": 10}, {"host_name": "server-02", "problems": 5},] }]) .directive('topalertproducers', function() { return { restrict: 'E', templateUrl: "tactical/top_alert_producers/top_alert_producers.html" }; });