You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added remote jmx flag for jBoss6
* using optional paramters
* removed bool value for remote flag command parameter
* Changelog
* removed deprecated methods Open and OpenWithSSL
* changelog
* Added documentation
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## Next Release
9
9
10
+
### Changed
11
+
12
+
- New JMX option for remote URL protocol connections.
13
+
- Changed JMX open method. New `jmx.OpenWithParameters` accepts optionals parameters like SSL, remote connections, etc. Old integrations using old methods `jmx.OpenWithSSL` and `jmx.Open` should use this new `jmx.OpenWithParameters` method instead.
14
+
15
+
## 3.1.2
16
+
10
17
### Added
11
18
12
19
- Protocol v3: See full [documentation](docs/protocol-v3.md).
- Instantiates a JMX client. It requires a `hostname` and a `port` as arguments. `username` and
33
-
`password` are optional (pass empty strings `""` if no user/password).
33
+
`password` are optional (pass empty strings `""` if no user/password). There is also the possibility to configure
34
+
the JMX agent with SSL or configure the remote URL connection using the [Option](https://godoc.org/github.com/newrelic/infra-integrations-sdk/jmx#Option) type.
35
+
See example below using the SSL configuration.
34
36
- By default, the generated client will look for the [NRJMX tool](#installing-nr-jmx) in the path `/usr/bin/nrjmx`,
35
37
but this location can be overriden by means of the `NR_JMX_TOOL` environment variable.
36
38
- This function will return the global `ErrJmxCmdRunning` error, if there is already another instance of NRJMX
@@ -42,7 +44,7 @@ the [SDK JMX GoDoc page]([http.New GoDoc](https://godoc.org/github.com/newrelic/
42
44
MBean Object Name (in the `domain:key-property-list` form) and the value is the sample value for this metric
0 commit comments