Page Menu
Home
VyOS Platform
Search
Configure Global Search
Log In
Files
F117520900
test_service_monitoring_telegraf.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
test_service_monitoring_telegraf.py
View Options
#!/usr/bin/env python3
#
# Copyright (C) 2021 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
from
base_vyostest_shim
import
VyOSUnitTestSHIM
from
vyos.configsession
import
ConfigSession
from
vyos.configsession
import
ConfigSessionError
from
vyos.util
import
process_named_running
from
vyos.util
import
read_file
PROCESS_NAME
=
'telegraf'
TELEGRAF_CONF
=
'/run/telegraf/vyos-telegraf.conf'
base_path
=
[
'service'
,
'monitoring'
,
'telegraf'
]
org
=
'log@in.local'
token
=
'GuRJc12tIzfjnYdKRAIYbxdWd2aTpOT9PVYNddzDnFV4HkAcD7u7-kndTFXjGuXzJN6TTxmrvPODB4mnFcseDV=='
port
=
'8888'
url
=
'https://foo.local'
bucket
=
'main'
inputs
=
[
'cpu'
,
'disk'
,
'mem'
,
'net'
,
'system'
,
'kernel'
,
'interrupts'
,
'syslog'
]
class
TestMonitoringTelegraf
(
VyOSUnitTestSHIM
.
TestCase
):
def
tearDown
(
self
):
self
.
cli_delete
(
base_path
)
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
])
# commit changes
self
.
cli_commit
()
# Check for running process
self
.
assertTrue
(
process_named_running
(
PROCESS_NAME
))
config
=
read_file
(
TELEGRAF_CONF
)
# Check telegraf config
self
.
assertIn
(
f
'organization = "{org}"'
,
config
)
self
.
assertIn
(
f
' token = "$INFLUX_TOKEN"'
,
config
)
self
.
assertIn
(
f
'urls = ["{url}:{port}"]'
,
config
)
self
.
assertIn
(
f
'bucket = "{bucket}"'
,
config
)
for
input
in
inputs
:
self
.
assertIn
(
input
,
config
)
if
__name__
==
'__main__'
:
unittest
.
main
(
verbosity
=
2
)
File Metadata
Details
Attached
Mime Type
text/x-script.python
Expires
Sat, Sep 26, 12:49 PM (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4285182
Default Alt Text
test_service_monitoring_telegraf.py (2 KB)
Attached To
Mode
rVYOSONEX vyos-1x
Attached
Detach File
Event Timeline
Log In to Comment