Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
2022-06-13 Jerry Lundström

Release 1.2.0

This release fixes handling of base64'ed strings in DSC XML and will
now decode them back into text when reading, the selected output will
then handling any quoting or escaping needed.
Added a new option for Prometheus output to set a prefix for metrics so
that they can be easily separated from other metrics if needed, see
`man dsc-datatool-output prometheus`.

5f9f972 Fix COPR
3d72019 Prometheus metric prefix
bdc992e base64 labels

2022-04-05 Jerry Lundström

Release 1.1.0

This releases adds support for Prometheus' node_exporter using it's
This release adds support for Prometheus' node_exporter using it's
Textfile Collector (see `man dsc-datatool-output prometheus`) and
fixes a bug in InfluxDB output when selecting what timestamp to use.
Also updates packages and Grafana test site dashboards.
Expand Down
17 changes: 17 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
dsc-datatool (1.2.0-1~unstable+1) unstable; urgency=low

* Release 1.2.0

This release fixes handling of base64'ed strings in DSC XML and will
now decode them back into text when reading, the selected output will
then handling any quoting or escaping needed.
Added a new option for Prometheus output to set a prefix for metrics so
that they can be easily separated from other metrics if needed, see
`man dsc-datatool-output prometheus`.

5f9f972 Fix COPR
3d72019 Prometheus metric prefix
bdc992e base64 labels

-- Jerry Lundström <[email protected]> Mon, 13 Jun 2022 15:25:09 +0200

dsc-datatool (1.1.0-1~unstable+1) unstable; urgency=low

* Release 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion dsc_datatool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def process(self, datasets)
:copyright: 2022 OARC, Inc.
"""

__version__ = '1.1.0'
__version__ = '1.2.0'

import argparse
import logging
Expand Down
14 changes: 13 additions & 1 deletion rpm/dsc-datatool.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dsc-datatool
Version: 1.1.0
Version: 1.2.0
Release: 1%{?dist}
Summary: Export DSC data to other formats and/or databases
Group: Productivity/Networking/DNS/Utilities
Expand Down Expand Up @@ -85,6 +85,18 @@ install -m644 man/man7/dsc-datatool-transformer-netremap.7 %{buildroot}%{_mandir


%changelog
* Mon Jun 13 2022 Jerry Lundström <[email protected]> 1.2.0-1
- Release 1.2.0
* This release fixes handling of base64'ed strings in DSC XML and will
now decode them back into text when reading, the selected output will
then handling any quoting or escaping needed.
* Added a new option for Prometheus output to set a prefix for metrics so
that they can be easily separated from other metrics if needed, see
`man dsc-datatool-output prometheus`.
* Commits:
5f9f972 Fix COPR
3d72019 Prometheus metric prefix
bdc992e base64 labels
* Tue Apr 05 2022 Jerry Lundström <[email protected]> 1.1.0-1
- Release 1.1.0
* This releases adds support for Prometheus' node_exporter using it's
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='dsc_datatool',
version='1.1.0',
version='1.2.0',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
Expand Down