-
BREAKING: increase minimum required Grafana version to
>=10.4.0
to ensure compatibility with@grafana/plugin-ui
. This drops support for older Grafana versions. -
BUGFIX: fix an issue with missing
_msg
field in the response. If_msg
field is missed in the response now always returned as an empty string. See #330. -
BUGFIX: fix an issue with parsing of the
_stream
field that contains commas in its value. Previously, commas in the_stream
field values were incorrectly processed, leading to parsing errors. This has been fixed to properly handle complex string values with commas. See #334. -
BUGFIX: fix an issue with parsing timestamp from the
_time
field if it contains nanosecond precision. Now, the plugin correctly handles timestamps with nanosecond precision in the_time
field and do not round it, ensuring accurate time representation in logs. See #340