Skip to content

Releases: telenornms/skogul

Skogul v0.14.2

23 Mar 09:22
86a4b86
Compare
Choose a tag to compare

Release date: 2022-03-22

Introduce IgnorePartialErrors in handlers to let a handler modify a
container by removing invalid metrics instead of dropping the entire
container.

Also introduces several small but important log-quality fixes.

Skogul v0.14.1

22 Mar 10:49
Compare
Choose a tag to compare

Release date: 2022-03-22

Add Cast transformer, which allows specifying a shallow schema for input.
It can cast data and metadatafields to strings, integers and 64-bit floats.

It currently ignores missing fields, and for fields already of the correct
value, it "just works" with no added costs. For fields needing conversion
it will somewhat cumbersomely go through fmt.Sscanf(fmt.Sprintf(...),...),
which is somewhat costly, but also ensures that it can convert anything
that fmt knows how to handle reasonably well.

It is meant to use as a "we can't fix the source data", not as a "we don't
want to fix the source provider".

Skogul v0.14.0

22 Mar 09:10
Compare
Choose a tag to compare

Release date: 2022-03-22

Updates juniper telemetry interface, including a change of protobuf
compiler. Tested on various routers.

Greatly improves error messages, specially for protobuf, this is the
beginning of a major revamp to use wrapped errors, which will hopefully
both reduce log spam, and make the log messages more useful for real life
trouble shooting. For protobuf, this means actually useful errors when
marshaling fails, including what router and the underlying errors. Next up:
Workaround for -Infinity.

Also adds http stats, courtesy of eiriktaa eirikamdal@yahoo.com.

Also switches rpm builds from CentOS 8 which no longer works at all, to
Rocky Linux 8. This should have no impact on end users, regardless of
platform.

PS: This is a verbatim copy of the entire v0.13.x debacle, since it failed
to build the release. There are 0 code changes between 0.13.0 and 0.14.0,
and this is just to get the actual NEWS section fixed and a clean start.

Skogul v0.13.2

22 Mar 09:01
Compare
Choose a tag to compare

Release date: 2022-03-22

Only build fixes since 0.13.0 failed to check on our CI pipeline. See
v0.13.0 for actual news.

Skogul v0.12.1

10 Dec 10:55
b3ade5e
Compare
Choose a tag to compare

Release date: 2021-12-10

Fixes a bug in the stats receiver where it would not run transformers before
sending data.

Skogul v0.12.0

10 Dec 10:37
f1f77fa
Compare
Choose a tag to compare

Release date: 2021-12-10

Adds a Stats receiver for shipping internal skogul stats. This is a bit more
detailed than the Stats sender, and will be further extended in the future.
For now there are stats for the UDP receiver, protobuf parser and HTTP sender.
Furthermore, in the future we will try to get rid of more log messages about
errors and rather use stats for that.

Fixes the Structured Data parser to support more formats, and tackle all
formats with the same efficiency and priority.

Adds a concept of skogul.Identity to identify a skogul module by name. The
name is fetched from the configuration, and is typically the key used to
define a module.

This release also adds CopyFromData, a transformer to copy a field from data
to metadata without removing it. The ExtractFromData transformer is marked as
obsolete and will be removed in the future. To achieve the same effect, use
CopyFromData togheter with a Remove transformer.

Skogul v0.11.0

02 Dec 14:25
Compare
Choose a tag to compare

Release date: 2021-12-02

The Batch sender now has a concept of a burning metrics if the sender is
too slow. If a "Burner" sender is configured, the batch sender will
redirect metrics to the burner if the regular sender would otherwise block,
e.g.: If the backlog is too big. This is recommended for setups where data
is duplicated to multiple backends, such as to a staging and test
environment, where you don't want the staging and test environment to slow
down data replication to the production environment.

Additionally, the UDP Read buffer size can now be configured for the UDP
receiver, which can be very useful for bursty telemetry data.

On a side note, shout out to Lasse Haugen for inspiring the DictSplitter
included in v0.10.9.

Skogul v0.10.9

01 Dec 16:57
c5ebd3c
Compare
Choose a tag to compare

Release date: 2021-12-01

Skogul now figures out if the configuration path is a file or a directory,
and will work with either using the same options (-f or -d). We will
probably deprecate one of the flags at some point in the future.

Add a new DictSplit transformer.

Improved language in documentation.

Make the null-sender configure itself automatically.

The Net sender now checks for required parameters.

When running tests, try to find a new port if the selected one was already in use.

Skogul v0.10.8

15 Nov 15:49
1c92707
Compare
Choose a tag to compare

Release date: 2021-11-15

Fixes a bug that would crash skogul if it failed to convert
a protocol buffer packet into the internal data format of
skogul. The underlying problem was an interesting value
for a numerical metric, which there are now tests added for.

Skogul v0.10.7

07 May 13:25
3f8a171
Compare
Choose a tag to compare

Release date: 2021-05-07

Fixes the systemd(1) unit file so that it supports being enabled
and automagically started on boot. We all WantedBy this.