Skip to content

Releases: telenornms/skogul

Skogul v0.9.0

25 Sep 12:49
4cc405b
Compare
Choose a tag to compare

Release date: 2020-09-25

Promotes parsers to modules, making the configurable. To keep simplicity,
parsers can be "auto-instantiated" without having to create a "parsers"
key in the configuration file. To configure a parser, a "parsers" section
has to be added and the appropriate configurations made.

The auto-instantiation feature has been added to the debug sender and the
template transformer as well, to reduce the amount of boilerplate required.

Breaking change: Previously, not supplying a parser in a handler was allowed,
and would default to use the json parser for skogul containers. This is no
longer the case, and a parser always has to be defined.

Skogul v0.8.1

22 Sep 11:23
a3e8011
Compare
Choose a tag to compare

Release date: 2020-09-22

Adds a parser for MNR data and adds some more logging to the file sender.

Skogul v0.8.0

04 Sep 08:08
ee40bbf
Compare
Choose a tag to compare

Release date: 2020-09-04

Adds a file sender which supports writing to file.
Fixes the RPM build spec so that rpm will not overwrite the default config
file upon upgrading skogul.

Skogul v0.7.2

30 Jul 16:07
16fc722
Compare
Choose a tag to compare

Release date: 2020-07-30

Fixes a bug in the influx parser so that it now supports '=' (equals sign)
in tag values without dropping the rest of the tags.

Skogul v0.7.1

03 Jul 08:31
3e54ac6
Compare
Choose a tag to compare

Release date: 2020-07-03

Fixes a bug in the influx receiver so that it now supports '=' (equals sign)
in tag values. This is useful for command lines where arguments might be
-foo=bar.

Skogul v0.7.0

18 Jun 13:21
Compare
Choose a tag to compare

Release date: 2020-06-18

Configuration can now be read from multiple files by using the new -d
option instead of -f to refer to a configuration directory instead of a
configuration file.

All configuration files need to end with .json, and all are read. When
all configuration files are read, any reference is reviewed. This means
that you can have a set of standard senders in a configuration file and
refer to them from an other.

Skogul v0.6.2

03 Apr 14:56
c4db2a2
Compare
Choose a tag to compare

Release date: 2020-04-03

Fixes a bug introduced in the influx-sender in v0.6.1 which would send any integers
as quoted string values, as in key="123i" instead of the expected key=123i.
Fixes a bug in the influx-receiver which would skip the final byte in a float
when parsing it.

Skogul v0.6.1

03 Apr 12:57
0a6ad82
Compare
Choose a tag to compare

Release date: 2020-04-03

Fixes a bug in the influx-sender which didn't send integers to influx as i,
which is what InfluxDB expects. Since this is a breaking change and requires the
measurement fields to be dropped/updated/altered, there's a feature flag added:
"ConvertIntToFloat". Enabling this will convert ALL numbers sent through that
sender to FLOATS. Don't do this unless you know you need this. The default value
is OFF.

Skogul v0.6.0

02 Apr 13:42
d2ba400
Compare
Choose a tag to compare

Release date: 2020-04-02

Introduces a parser for the InfluxDB line protocol. The parser is to be considered
in beta/testing. Activate it by configuring a handler with the "influx" parser.

Skogul v0.5.5

03 Mar 13:31
5235d5b
Compare
Choose a tag to compare

Release date: 2020-03-03

Fixes a bug with the build pipeline which would reuse a previously generated
skogul binary when archiving releases. The binary in question did not contain
the build flag for setting version number, so now we clean the directory before
building a release to make sure to rebuild it with the proper flags.