Skip to content

Commit 4822a19

Browse files
authored
Merge pull request #89 from jfrog/bugfix/JOBS-2031
fix #Rename token_id to trace_id in access-security-audit log parsing
2 parents f0110e1 + fd74227 commit 4822a19

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All changes to the log analytics integration will be documented in this file.
44

5+
## [1.0.15] - April 2026
6+
7+
* Fix incorrect field name in access-security-audit log parsing: renamed `token_id` capture group to `trace_id` to match the actual log format documented at https://docs.jfrog.com/administration/docs/audit-trail-log (JOBS-2031)
8+
59
## [1.0.14] - April 2026
610

711
* Added RTFS (JFrog Artifactory Federation Service) metrics collection support in Artifactory fluentd config (JOBS-1897)

fluent.conf.rt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@
272272
tag jfrog.rt.access.audit
273273
<parse>
274274
@type regexp
275-
expression /^(?<log_timestamp>[^ ]*)\|(?<token_id>[^ ]*)\|(?<user_ip>[^ ]*)\|(?<user>[^ ]*)\|(?<logged_principal>[^ ]*)\|(?<entity_name>[^ ]*)\|(?<event_type>[^ ]*)\|(?<event>[^ ]*)\|(?<data_changed>.*)/
275+
expression /^(?<log_timestamp>[^ ]*)\|(?<trace_id>[^ ]*)\|(?<user_ip>[^ ]*)\|(?<user>[^ ]*)\|(?<logged_principal>[^ ]*)\|(?<entity_name>[^ ]*)\|(?<event_type>[^ ]*)\|(?<event>[^ ]*)\|(?<data_changed>.*)/
276276
time_key log_timestamp
277277
time_format %Y-%m-%dT%H:%M:%S.%LZ
278278
</parse>

0 commit comments

Comments
 (0)