|
1 | 1 | # Changelog
|
2 | 2 |
|
3 |
| -======= |
4 |
| -### November 2018 |
| 3 | +## November 2018 - v3.2.0 |
| 4 | +* Added GetPlatform to mqmetric so it can be used as a label/tag in collectors |
| 5 | +* Added sample programs demonstrating specific operations such as put/get of message |
| 6 | +* Fixed conversion of some C strings into Go strings |
| 7 | +* Update MQI header files for MQ V9.1.1 and give more platform variations |
| 8 | +* Add support for MQSTAT and MQSUBRQ functions |
| 9 | +* Add support and sample for Message Property functions |
| 10 | +* Add InqMap as alternative (simpler) MQINQ operation. Inq() should be considered deprecated |
| 11 | +* Add support for MQSET function |
| 12 | +* Add discovery of translated versions of the mqmetric descriptions |
| 13 | + |
| 14 | +## November 2018 - v3.1.0 |
5 | 15 | * Added functions to mqmetric to issue DISPLAY QSTATUS for additional stats
|
6 | 16 | * Added z/OS capability for minimal status
|
7 | 17 |
|
8 |
| -### October 2018 |
| 18 | +## October 2018 |
9 | 19 | * Allow compilation against MQ v8
|
10 | 20 |
|
11 | 21 | ## October 2018 - v3.0.0
|
|
20 | 30 | * Updated build comments
|
21 | 31 |
|
22 | 32 | ## July 2018 - v2.0.0
|
23 |
| - |
24 | 33 | * Corrected package imports
|
25 | 34 | * Formatted go code with `go fmt`
|
26 | 35 | * Rearranged this file
|
|
30 | 39 | * Added unit tests for `ibmmq` and `mqmetric` packages
|
31 | 40 |
|
32 | 41 | ## March 2018 - v1.0.0
|
33 |
| - |
34 | 42 | * Added V9.0.5 constant definitions
|
35 | 43 | * Changed #cgo directives for Windows now the compiler supports standard path names
|
36 | 44 | * Added mechanism to set MQ userid and password for Prometheus monitor
|
37 | 45 | * Released v1.0.0 of this repository for use with golang dependency management tools
|
38 | 46 |
|
39 | 47 | ## October 2017
|
40 |
| - |
41 | 48 | * Added V9.0.4 constant definitions - now generated from original MQ source code
|
42 | 49 | * Added MQSC script to show how to redefine event queues for pub/sub
|
43 | 50 | * Prometheus collector has new parameter to override the first component of the metric name
|
44 | 51 | * Prometheus collector can now process channel-level statistics
|
45 | 52 |
|
46 | 53 | ## 18 May 2017
|
47 |
| - |
48 | 54 | * Added the V9.0.3 constant definitions.
|
49 | 55 | * Reinstated 64-bit structure "length" fields in cmqc.go after fixing a bug in the base product C source code generator.
|
50 | 56 |
|
51 | 57 | ## 25 Mar 2017
|
52 |
| - |
53 | 58 | * Added the metaPrefix option to the Prometheus monitor. This allows selection of non-default resources such as the MQ Bridge for Salesforce included in MQ 9.0.2.
|
54 | 59 |
|
55 | 60 | ## 15 Feb 2017
|
56 |
| - |
57 | 61 | * API BREAKING CHANGE: The MQI verbs have been changed to return a single error indicator instead of two separate values. See mqitest.go for examples of how MQRC/MQCC codes can now be tested and extracted. This change makes the MQI implementation a bit more natural for Go environments.
|
58 | 62 |
|
59 | 63 | ## 10 Jan 2017
|
60 |
| - |
61 | 64 | * Added support for the MQCD and MQSCO structures to allow programmable client connectivity, without requiring a CCDT. See the clientconn sample program for an example of using the MQCD.
|
62 | 65 | * Moved sample programs into subdirectory
|
63 | 66 |
|
64 | 67 | ## 14 Dec 2016
|
65 |
| - |
66 | 68 | * Minor updates to this README for formatting
|
67 | 69 | * Removed xxx_CURRENT_LENGTH definitions from cmqc
|
68 | 70 |
|
69 | 71 | ## 07 Nov 2016
|
70 |
| - |
71 | 72 | * Added a collector that prints metrics in a simple JSON format. See the [README](cmd/mq_json/README.md) for more details.
|
72 | 73 | * Fixed bug where freespace metrics were showing as non-integer bytes, not percentages
|
73 | 74 |
|
74 | 75 | ## 17 Oct 2016
|
75 |
| - |
76 | 76 | * Added some Windows support. An example batch file is included in the mq_influx directory; changes would be needed to the MQSC script to call it. The other monitor programs can be supported with similar modifications.
|
77 | 77 | * Added a "getting started" section to this README.
|
78 | 78 |
|
79 | 79 | ## 23 Aug 2016
|
80 |
| - |
81 | 80 | * Added a collector for Amazon AWS CloudWatch monitoring. See the [README](cmd/mq_aws/README.md) for more details.
|
82 | 81 |
|
83 | 82 | ## 12 Aug 2016
|
84 |
| - |
85 | 83 | * Added a OpenTSDB monitor. See the [README](cmd/mq_opentsdb/README.md) for more details.
|
86 | 84 | * Added a Collectd monitor. See the [README](cmd/mq_coll/README.md) for more details.
|
87 | 85 | * Added MQI MQCNO/MQCSP structures to support client connections and password authentication with MQCONNX.
|
|
90 | 88 | * Changed database password mechanism so that "exec" maintains the PID for MQ services
|
91 | 89 |
|
92 | 90 | ## 04 Aug 2016
|
93 |
| - |
94 | 91 | * Added a monitor command for exporting MQ data to InfluxDB. See the [README](cmd/mq_influx/README.md) for more details
|
95 | 92 | * Restructured the monitoring code to put common material in the mqmetric package, called from the Influx and Prometheus monitors.
|
96 | 93 |
|
97 | 94 | ## 25 Jul 2016
|
98 |
| - |
99 | 95 | * Added functions to handle basic PCF creation and parsing
|
100 | 96 | * Added a monitor command for exporting MQ V9 queue manager data to Prometheus. See the [README](cmd/mq_prometheus/README.md) for more details
|
101 | 97 |
|
102 | 98 | ## 18 Jul 2016
|
103 |
| - |
104 | 99 | * Changed structures so that most applications will not need to use cgo to imbed the MQ C headers
|
105 | 100 | * Go programs will now use int32 where C programs use MQLONG
|
106 | 101 | * Use of message handles, distribution lists require cgo for now
|
|
112 | 107 | * Added MQItoString function for some maps of values to constant names
|
113 | 108 |
|
114 | 109 | ## 08 Jul 2016
|
115 |
| - |
116 | 110 | * Initial release
|
0 commit comments