From 6a2846afeb5420ae97b8a3e3f58374dede2e1cdd Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 11 Apr 2018 19:19:05 +0200 Subject: [PATCH] Show full fqdn for apps in graphs --- src/views/graphs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/graphs.js b/src/views/graphs.js index 963a926c1..6962fbe54 100644 --- a/src/views/graphs.js +++ b/src/views/graphs.js @@ -180,7 +180,7 @@ angular.module('Application').controller('GraphsController', ['$scope', '$locati $scope.installedApps.forEach(function (app) { targets.push('summarize(collectd.localhost.table-' + app.id + '-memory.gauge-rss, "1min", "avg")'); targetsInfo.push({ - label: app.location || 'bare domain', + label: app.fqdn, color: getRandomColor(), app: app });