Skip to content

Commit 2793ecb

Browse files
committed
* Update to MQ 9.4.4
* Add showCustomAttribute filter config setting to include the CUSTOM attribute as metric tag/label
1 parent 3d51c44 commit 2793ecb

38 files changed

+216
-172
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22
Newest updates are at the top of this file.
33

4-
### xxx xx 2025 (v5.6.5)
4+
### Oct 16 2025 (v5.6.5)
55
* Update to MQ 9.4.4
66
* Add showCustomAttribute filter config setting to include the CUSTOM attribute as metric tag/label
77

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ARG EXPORTER
2626
ENV EXPORTER=${EXPORTER} \
2727
ORG="github.com/ibm-messaging" \
2828
REPO="mq-metric-samples" \
29-
VRMF=9.4.3.0 \
29+
VRMF=9.4.4.0 \
3030
CGO_CFLAGS="-I/opt/mqm/inc/" \
3131
CGO_LDFLAGS_ALLOW="-Wl,-rpath.*" \
3232
genmqpkg_incnls=1 \

Dockerfile.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ RUN mkdir -p $GOPATH/src $GOPATH/bin $GOPATH/pkg $GOPATH/out \
4949
# Location of the downloadable MQ client package \
5050
ENV RDURL="https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqdev/redist" \
5151
RDTAR="IBM-MQC-Redist-Linux${MQARCH}.tar.gz" \
52-
VRMF=9.4.3.0
52+
VRMF=9.4.4.0
5353

5454
# Install the MQ client from the Redistributable package. This also contains the
5555
# header files we need to compile against. Setup the subset of the package

Dockerfile.run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN microdnf install -y --disableplugin=subscription-manager curl tar gzip findu
3131
# Location of the downloadable MQ client package \
3232
ENV RDURL="https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqdev/redist" \
3333
RDTAR="IBM-MQC-Redist-Linux${MQARCH}.tar.gz" \
34-
VRMF=9.4.3.0
34+
VRMF=9.4.4.0
3535

3636
# Install the MQ client from the Redistributable package. This also contains the
3737
# header files we need to compile against. Setup the subset of the package

amqsevtg/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.23.0
55
toolchain go1.24.1
66

77
require (
8-
github.com/ibm-messaging/mq-golang/v5 v5.6.4
8+
github.com/ibm-messaging/mq-golang/v5 v5.6.5
99
go.opentelemetry.io/contrib/bridges/otelslog v0.8.0
1010
go.opentelemetry.io/otel v1.33.0
1111
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.9.0

amqsevtg/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
1515
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
1616
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 h1:TmHmbvxPmaegwhDubVz0lICL0J5Ka2vwTzhoePEXsGE=
1717
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0/go.mod h1:qztMSjm835F2bXf+5HKAPIS5qsmQDqZna/PgVt4rWtI=
18-
github.com/ibm-messaging/mq-golang/v5 v5.6.4 h1:C7b0xUCXc+urjeoFfPmMn5Dq7J/yD5Hanqx2xacsQd8=
19-
github.com/ibm-messaging/mq-golang/v5 v5.6.4/go.mod h1:xCV0vl1+ik3VyWZnwAj++2J89vSTzhXP1gXhG0X3IYE=
18+
github.com/ibm-messaging/mq-golang/v5 v5.6.5 h1:AkOetf9pFAqLrg6dsBVyycHGjgkZAiJBrzEZ6C9hjuo=
19+
github.com/ibm-messaging/mq-golang/v5 v5.6.5/go.mod h1:xCV0vl1+ik3VyWZnwAj++2J89vSTzhXP1gXhG0X3IYE=
2020
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
2121
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
2222
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=

amqsevtg/go.work

Lines changed: 0 additions & 7 deletions
This file was deleted.

dspmqrtj/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module dspmqrtj/v5
33
go 1.24.0
44

55
require (
6-
github.com/ibm-messaging/mq-golang/v5 v5.6.4
6+
github.com/ibm-messaging/mq-golang/v5 v5.6.5
77
github.com/sirupsen/logrus v1.9.3
88
golang.org/x/term v0.35.0
99
)

dspmqrtj/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
22
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
33
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
4-
github.com/ibm-messaging/mq-golang/v5 v5.6.4 h1:C7b0xUCXc+urjeoFfPmMn5Dq7J/yD5Hanqx2xacsQd8=
5-
github.com/ibm-messaging/mq-golang/v5 v5.6.4/go.mod h1:xCV0vl1+ik3VyWZnwAj++2J89vSTzhXP1gXhG0X3IYE=
4+
github.com/ibm-messaging/mq-golang/v5 v5.6.5 h1:AkOetf9pFAqLrg6dsBVyycHGjgkZAiJBrzEZ6C9hjuo=
5+
github.com/ibm-messaging/mq-golang/v5 v5.6.5/go.mod h1:xCV0vl1+ik3VyWZnwAj++2J89vSTzhXP1gXhG0X3IYE=
66
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
77
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
88
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=

dspmqrtj/vendor/github.com/ibm-messaging/mq-golang/v5/ibmmq/cmqc_aix.go

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)