From 6c2c79a0be070f7e0a789e37e9c11dc6742f9533 Mon Sep 17 00:00:00 2001 From: David Roy Date: Fri, 13 Sep 2024 09:23:57 +0200 Subject: [PATCH 1/2] Update webapp.go --- portal/webapp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portal/webapp.go b/portal/webapp.go index 1b701e1..16b3b63 100644 --- a/portal/webapp.go +++ b/portal/webapp.go @@ -198,7 +198,7 @@ func routeIndex(c echo.Context) error { } // get the Telegraf version - - teleVersion := container.GetVersionLabel("telegraf") + teleVersion := container.GetVersionLabel("jts_telegraf") return c.Render(http.StatusOK, "index.html", map[string]interface{}{"TeleVmx": teleVmx, "TeleMx": teleMx, "TelePtx": telePtx, "TeleAcx": teleAcx, "Grafana": grafana, "Kapacitor": kapacitor, "Influx": influx, "Jtso": jtso, "NumVMX": numVMX, "NumMX": numMX, "NumPTX": numPTX, "NumACX": numACX, From 49a9b4dc2e6772e14c9c33c66d6d72159c4015b1 Mon Sep 17 00:00:00 2001 From: David Roy Date: Fri, 13 Sep 2024 09:25:05 +0200 Subject: [PATCH 2/2] Update config.go --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index ad464b9..c76d7d3 100644 --- a/config/config.go +++ b/config/config.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/viper" ) -const JTSO_VERSION string = "1.0.3" +const JTSO_VERSION string = "1.0.4" type PortalConfig struct { Https bool