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

Finished release 0.30.

parents 082bd49a 330d58a8
Branches
Tags 0.30
No related merge requests found
......@@ -247,6 +247,7 @@ def get_panel_fields(panel, panel_type, datasource):
'refId': next(letters),
'select_field': field,
'percentile': 'percentile' in alias.lower(),
'bits': panel_type != 'errors' # used to remove *8 on value
}
error_fields = [('Ingress Errors', 'errorsIn'),
......
......@@ -31,17 +31,19 @@
{
"params": [],
"type": "mean"
},
}
{% else %}
{
"params": [95],
"type": "percentile"
},
}
{% endif %}
{
{% if bits %}
,{
"params": ["*8"],
"type": "math"
}
{% endif %}
]
],
"tags": [
......
......@@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
## [0.30] - 2021-11-24
- Fix error with *8 multiplier also being performed on errors/discard fields
## [0.29] - 2021-11-23
- POL1-480: Discards added to error graphs
......
......@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='brian-dashboard-manager',
version="0.29",
version="0.30",
author='GEANT',
author_email='swd@geant.org',
description='',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment