From fda078dd4d13cd6830639fcaaed340ae86d99008 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Fri, 13 Oct 2017 18:04:36 +0200 Subject: [PATCH] net-mgmt/telegraf: small tweaks --- README.md | 1 + .../mvc/app/controllers/OPNsense/Telegraf/InputController.php | 2 +- .../mvc/app/controllers/OPNsense/Telegraf/OutputController.php | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e70b00602..e92ff2872 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ net/wol -- Wake on LAN Service net/zerotier -- Virtual Networks That Just Work net-mgmt/collectd -- Collect system and application performance metrics periodically net-mgmt/snmp -- SNMP Server via bsnmpd +net-mgmt/telegraf -- Agent for collecting metrics and data net-mgmt/zabbix-agent -- Enterprise-class open source distributed monitoring agent sysutils/boot-delay -- Apply a persistent 10 second boot delay sysutils/monit -- Proactive system monitoring diff --git a/net-mgmt/telegraf/src/opnsense/mvc/app/controllers/OPNsense/Telegraf/InputController.php b/net-mgmt/telegraf/src/opnsense/mvc/app/controllers/OPNsense/Telegraf/InputController.php index 897fde613..9e8379c0b 100644 --- a/net-mgmt/telegraf/src/opnsense/mvc/app/controllers/OPNsense/Telegraf/InputController.php +++ b/net-mgmt/telegraf/src/opnsense/mvc/app/controllers/OPNsense/Telegraf/InputController.php @@ -33,7 +33,7 @@ class InputController extends \OPNsense\Base\IndexController public function indexAction() { $this->view->title = gettext("Telegraf Inputs"); - $this->view->inputForm = $this->getForm("input"); + $this->view->inputForm = $this->getForm("input"); $this->view->pick('OPNsense/Telegraf/input'); } } diff --git a/net-mgmt/telegraf/src/opnsense/mvc/app/controllers/OPNsense/Telegraf/OutputController.php b/net-mgmt/telegraf/src/opnsense/mvc/app/controllers/OPNsense/Telegraf/OutputController.php index 2669d7b33..d4b299c1c 100644 --- a/net-mgmt/telegraf/src/opnsense/mvc/app/controllers/OPNsense/Telegraf/OutputController.php +++ b/net-mgmt/telegraf/src/opnsense/mvc/app/controllers/OPNsense/Telegraf/OutputController.php @@ -33,7 +33,7 @@ class OutputController extends \OPNsense\Base\IndexController public function indexAction() { $this->view->title = gettext("Telegraf Outputs"); - $this->view->outputForm = $this->getForm("output"); + $this->view->outputForm = $this->getForm("output"); $this->view->pick('OPNsense/Telegraf/output'); } }