This patch release features the following improvements and bug fixes over Tenzir Node v5.1.5:
- We now gracefully handle a panic in
write_syslog
, whenstructured_data
does not have the expected shape. - We fixed a regression in the
if
statement that caused it to indefinitely withhold the last batch of events when its input stalled. - We removed the deprecated
<duration>.as_secs()
function which has been superseded by<duration>.count_seconds()
quite some time ago. Thecount_seconds()
function provides the same functionality with a more consistent naming convention that aligns with other duration-related functions likecount_minutes()
,count_hours()
, etc. - We implemented under-the-hood support for workspace tokens, which will become available with the next release of the Tenzir Platform.
- The
hour
,minute
, andsecond
functions extract the respective components of atime
value, and compliment the existingyear
,month
, andday
functions. Thesecond
function includes subsecond precision.