Skip to content
Snippets Groups Projects
Commit 2c820468 authored by Release Webservice's avatar Release Webservice
Browse files

Finished release 0.6.

parents 0767dd00 19ead549
Branches
Tags
No related merge requests found
...@@ -5,3 +5,5 @@ __pycache__ ...@@ -5,3 +5,5 @@ __pycache__
coverage.xml coverage.xml
.coverage .coverage
htmlcov htmlcov
docs/build
*.log
\ No newline at end of file
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.5] - 2021-10-11 ## [0.5] - 2021-10-11
- POL1-463: EUMETSAT multicast dashboards - POL1-463: pol EUMETSAT multicast counters
## [0.4] - 2021-08-24 ## [0.4] - 2021-08-24
- bugfix (POL1-492) - bugfix (POL1-492)
......
...@@ -25,7 +25,10 @@ class InterfaceCheck(sensu.AbstractCheck): ...@@ -25,7 +25,10 @@ class InterfaceCheck(sensu.AbstractCheck):
@sensu.AbstractCheck.name.getter @sensu.AbstractCheck.name.getter
def name(self): def name(self):
ifc_name = self.interface['name'].replace('/', '-') # fix POL1-386 - replace : in interface name with .
# https://docs.sensu.io/sensu-go/latest/observability-pipeline/
# observe-schedule/checks/#metadata-attributes
ifc_name = self.interface['name'].replace('/', '-').replace(':', '.')
return f'ifc-{self.interface["router"]}-{ifc_name}' return f'ifc-{self.interface["router"]}-{ifc_name}'
@sensu.AbstractCheck.command.getter @sensu.AbstractCheck.command.getter
......
...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages ...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='brian-polling-manager', name='brian-polling-manager',
version="0.5", version="0.6",
author='GEANT', author='GEANT',
author_email='swd@geant.org', author_email='swd@geant.org',
description='service for managing BRIAN polling checks', description='service for managing BRIAN polling checks',
......
[tox] [tox]
envlist = py36 envlist = py36
[flake8]
exclude = venv,.tox
[testenv] [testenv]
deps = deps =
coverage coverage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment