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

Finished release 0.32.

parents c1407b62 25426da6
No related branches found
Tags 0.32
No related merge requests found
......@@ -247,7 +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
'errors': panel_type == 'errors' # used to remove *8 on value
}
error_fields = [('Ingress Errors', 'errorsIn'),
......
......@@ -38,7 +38,7 @@
"type": "percentile"
}
{% endif %}
{% if bits %}
{% if not errors %}
,{
"params": ["*8"],
"type": "math"
......
......@@ -2,7 +2,10 @@
All notable changes to this project will be documented in this file.
## [0.30] - 2021-11-24
## [0.32] - 2021-12-14
- Fix bug with field *8 multiplier introduced for aggregate graphs
## [0.31] - 2021-11-24
- Update API key handling to support Grafana 8.2
## [0.30] - 2021-11-24
......
......@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='brian-dashboard-manager',
version="0.31",
version="0.32",
author='GEANT',
author_email='swd@geant.org',
description='',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment