|
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 | + |
| 9 | +## November 2018 - v3.1.0 |
5 | 10 | * Added functions to mqmetric to issue DISPLAY QSTATUS for additional stats |
6 | 11 | * Added z/OS capability for minimal status |
7 | 12 |
|
8 | | -### October 2018 |
| 13 | +## October 2018 |
9 | 14 | * Allow compilation against MQ v8 |
10 | 15 |
|
11 | 16 | ## October 2018 - v3.0.0 |
|
20 | 25 | * Updated build comments |
21 | 26 |
|
22 | 27 | ## July 2018 - v2.0.0 |
23 | | - |
24 | 28 | * Corrected package imports |
25 | 29 | * Formatted go code with `go fmt` |
26 | 30 | * Rearranged this file |
|
30 | 34 | * Added unit tests for `ibmmq` and `mqmetric` packages |
31 | 35 |
|
32 | 36 | ## March 2018 - v1.0.0 |
33 | | - |
34 | 37 | * Added V9.0.5 constant definitions |
35 | 38 | * Changed #cgo directives for Windows now the compiler supports standard path names |
36 | 39 | * Added mechanism to set MQ userid and password for Prometheus monitor |
37 | 40 | * Released v1.0.0 of this repository for use with golang dependency management tools |
38 | 41 |
|
39 | 42 | ## October 2017 |
40 | | - |
41 | 43 | * Added V9.0.4 constant definitions - now generated from original MQ source code |
42 | 44 | * Added MQSC script to show how to redefine event queues for pub/sub |
43 | 45 | * Prometheus collector has new parameter to override the first component of the metric name |
44 | 46 | * Prometheus collector can now process channel-level statistics |
45 | 47 |
|
46 | 48 | ## 18 May 2017 |
47 | | - |
48 | 49 | * Added the V9.0.3 constant definitions. |
49 | 50 | * Reinstated 64-bit structure "length" fields in cmqc.go after fixing a bug in the base product C source code generator. |
50 | 51 |
|
51 | 52 | ## 25 Mar 2017 |
52 | | - |
53 | 53 | * 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 | 54 |
|
55 | 55 | ## 15 Feb 2017 |
56 | | - |
57 | 56 | * 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 | 57 |
|
59 | 58 | ## 10 Jan 2017 |
60 | | - |
61 | 59 | * 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 | 60 | * Moved sample programs into subdirectory |
63 | 61 |
|
64 | 62 | ## 14 Dec 2016 |
65 | | - |
66 | 63 | * Minor updates to this README for formatting |
67 | 64 | * Removed xxx_CURRENT_LENGTH definitions from cmqc |
68 | 65 |
|
69 | 66 | ## 07 Nov 2016 |
70 | | - |
71 | 67 | * Added a collector that prints metrics in a simple JSON format. See the [README](cmd/mq_json/README.md) for more details. |
72 | 68 | * Fixed bug where freespace metrics were showing as non-integer bytes, not percentages |
73 | 69 |
|
74 | 70 | ## 17 Oct 2016 |
75 | | - |
76 | 71 | * 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 | 72 | * Added a "getting started" section to this README. |
78 | 73 |
|
79 | 74 | ## 23 Aug 2016 |
80 | | - |
81 | 75 | * Added a collector for Amazon AWS CloudWatch monitoring. See the [README](cmd/mq_aws/README.md) for more details. |
82 | 76 |
|
83 | 77 | ## 12 Aug 2016 |
84 | | - |
85 | 78 | * Added a OpenTSDB monitor. See the [README](cmd/mq_opentsdb/README.md) for more details. |
86 | 79 | * Added a Collectd monitor. See the [README](cmd/mq_coll/README.md) for more details. |
87 | 80 | * Added MQI MQCNO/MQCSP structures to support client connections and password authentication with MQCONNX. |
|
90 | 83 | * Changed database password mechanism so that "exec" maintains the PID for MQ services |
91 | 84 |
|
92 | 85 | ## 04 Aug 2016 |
93 | | - |
94 | 86 | * Added a monitor command for exporting MQ data to InfluxDB. See the [README](cmd/mq_influx/README.md) for more details |
95 | 87 | * Restructured the monitoring code to put common material in the mqmetric package, called from the Influx and Prometheus monitors. |
96 | 88 |
|
97 | 89 | ## 25 Jul 2016 |
98 | | - |
99 | 90 | * Added functions to handle basic PCF creation and parsing |
100 | 91 | * 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 | 92 |
|
102 | 93 | ## 18 Jul 2016 |
103 | | - |
104 | 94 | * Changed structures so that most applications will not need to use cgo to imbed the MQ C headers |
105 | 95 | * Go programs will now use int32 where C programs use MQLONG |
106 | 96 | * Use of message handles, distribution lists require cgo for now |
|
112 | 102 | * Added MQItoString function for some maps of values to constant names |
113 | 103 |
|
114 | 104 | ## 08 Jul 2016 |
115 | | - |
116 | 105 | * Initial release |
0 commit comments