Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

APIGOV-27848 - published transactions logger #100

Merged
merged 4 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions build/traceability/kong_traceability_agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ kong_traceability_agent:
keepfiles: ${LOG_METRICFILE_KEEPFILES:7}
rotateeverybytes: ${LOG_METRICFILE_ROTATEEVERYBYTES:10485760}
cleanbackups: ${LOG_METRICFILE_CLEANBACKUPS:0}
usagefile:
enabled: ${LOG_USAGEFILE_ENABLED:true}
name: ${LOG_USAGEFILE_NAME:usagefile.log}
keepfiles: ${LOG_USAGEFILE_KEEPFILES:7}
rotateeverybytes: ${LOG_USAGEFILE_ROTATEEVERYBYTES:10485760}
cleanbackups: ${LOG_USAGEFILE_CLEANBACKUPSEVERY:365}

# Send output to Central Database
output.traceability:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
toolchain go1.21.3

require (
github.com/Axway/agent-sdk v1.1.82
github.com/Axway/agent-sdk v1.1.83-0.20240509142904-bce138a65bf7
github.com/elastic/beats/v7 v7.17.20
github.com/google/uuid v1.6.0
github.com/kong/go-kong v0.47.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3f
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
github.com/Axway/agent-sdk v1.1.82 h1:5uYYPLiGC6HQEyhdzeqYOOx6xZ5I8cfwM9b5aHvvOGs=
github.com/Axway/agent-sdk v1.1.82/go.mod h1:J6qtxUMHiQochUtEFd+opCerMXbcGWC52HRHACTjOJc=
github.com/Axway/agent-sdk v1.1.83-0.20240509142904-bce138a65bf7 h1:E+SSLGGtXE+lAinihsr7OuJr+SJlm0EwXY/ExsAibXA=
github.com/Axway/agent-sdk v1.1.83-0.20240509142904-bce138a65bf7/go.mod h1:J6qtxUMHiQochUtEFd+opCerMXbcGWC52HRHACTjOJc=
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8=
github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24=
Expand Down