summaryrefslogtreecommitdiff
path: root/smoketest/scripts
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-07-08 07:26:25 +0200
committerGitHub <noreply@github.com>2022-07-08 07:26:25 +0200
commit44b1bdd3273dce4e74a5474c401ac7107950635b (patch)
tree801c37767245d09633e413124040d837904f3baf /smoketest/scripts
parentff2665175fe58bff6f76f5ee57ebee6de838dbc5 (diff)
parent40adf40a7d07b70f5a9c5f17540ee0c42ce9323f (diff)
downloadvyos-1x-44b1bdd3273dce4e74a5474c401ac7107950635b.tar.gz
vyos-1x-44b1bdd3273dce4e74a5474c401ac7107950635b.zip
Merge pull request #1401 from sever-sever/T4411
monitoring: T4411: Migrate influxdb options to influxdb node
Diffstat (limited to 'smoketest/scripts')
-rwxr-xr-xsmoketest/scripts/cli/test_service_monitoring_telegraf.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/smoketest/scripts/cli/test_service_monitoring_telegraf.py b/smoketest/scripts/cli/test_service_monitoring_telegraf.py
index 09937513e..f9d875e83 100755
--- a/smoketest/scripts/cli/test_service_monitoring_telegraf.py
+++ b/smoketest/scripts/cli/test_service_monitoring_telegraf.py
@@ -39,10 +39,10 @@ class TestMonitoringTelegraf(VyOSUnitTestSHIM.TestCase):
self.cli_commit()
def test_01_basic_config(self):
- self.cli_set(base_path + ['authentication', 'organization', org])
- self.cli_set(base_path + ['authentication', 'token', token])
- self.cli_set(base_path + ['port', port])
- self.cli_set(base_path + ['url', url])
+ self.cli_set(base_path + ['influxdb', 'authentication', 'organization', org])
+ self.cli_set(base_path + ['influxdb', 'authentication', 'token', token])
+ self.cli_set(base_path + ['influxdb', 'port', port])
+ self.cli_set(base_path + ['influxdb', 'url', url])
# commit changes
self.cli_commit()