This repository has been archived by the owner on May 25, 2022. It is now read-only.
Releases: open-telemetry/opentelemetry-log-collection
Releases · open-telemetry/opentelemetry-log-collection
v0.22.0
Fixed
- Issue in
file_input
where doublestar globbing could only be used at a single level (PR268) - Bug in
tcp_input
,udp_input
, andsyslog_input
which could cause a panic (PR273) - Made
windows_event_log_input
compatible with Windows Server 2022 (PR283)
Changed
file_input
will now emit bytes whenencoding = nop
(PR262)
v0.21.0
Added
- The
timestamp
operator can now parse timestamps that use a comma separator (Go v1.17) journald_input
now acceptsunits
andpriority
settings (PR252)file_input
will now trim whitespace when usingmultiline
(PR212)
Changed
- Operator IDs are now autogenerated sequentially, removing the necessity to specify the
id
field in most circumstances (PR246) - Updated to go version 1.17 (PR248)
Fixed
file_input
'sforce_flush_period
now defaults to500ms
, ensuring that the use ofmultiline.line_start_regex
does not cause omission of the last line of each file (PR261)
v0.20.0
v0.19.0
Added
csv_parser
(PR123)multiline
,encoding
, andmax_log_size
options toudp_input
(PR127)file_input
now hasinclude_file_name_resolved
andinclude_file_path_resolved
settings which produce attributesfile.name.resolved
andfile.path.resolved
, respectively (PR189)- GoSec workflow added to GitHub Actions (PR154)
- CodeQL workflow added to GitHub Actions (PR153)
Changed
file_input
's defaultencoding
is nowutf8
(PR147)file_input
'sinclude_file_name
andinclude_file_path
settings now produce attributesfile.name
andfile.path
, respectively (PR189)
Fixed
file_input
can now track files that are rotated out of theinclude
pattern matches (PR182)- Noisy log message in
file_input
(PR174) - Issue where failed parse operation could duplicate log entry (PR188)
Removed
- Parsers will no longer process
[]byte
data type (PR149)
v0.18.0
Added
file_input
now supports multi-level directory globs (i.e./var/**/logs/**/*.log
) (PR97)add
,remove
,move
,copy
,retain
, andflatten
operators, as alternatives to therestructure
operator.add_attributes
option totcp_input
andudp_input
, for capturing network attributes (PR108)multiline
,encoding
, andmax_log_size
options totcp_input
(PR125)
Removed
- Database package. The same functionality is supported via a
Persister
interface, passed toStart
methods (PR93)
Fixed
- Issue where
tcp_input
could panic or spam logs (PR130)
v0.17.0
v0.16.0
v0.15.1
v0.15.0
Added
syslog_input
operator, which combinestcp_input
,udp_input
, andsyslog_parser
into a single operator. (PR24)- Syslog operator RFC 3164 location parameter (PR11)
uri_parser
operator (PR12)
Removed
forward_input
andforward_output
, which were previously intended for use in the standalone agent (PR27)
v0.14.0
Removes standalone agent functionality, and prepares the new repo for…