Re: [go-nuts] JMX Call with non-HTTP

2020-09-14 Thread Henrik Johansson
The Jolokia solution is quite neat if you can control the running JVM since that bridge then runs inside the same JVM as an agent. Many servers and services offer to configure the command line for this and other similar purposes. On Mon, Sep 14, 2020 at 9:05 PM Robert Engels wrote: > Search for

Re: [go-nuts] JMX Call with non-HTTP

2020-09-14 Thread Robert Engels
Search for Java RMI-IIOP. > On Sep 14, 2020, at 2:04 PM, Robert Engels wrote: > >  > You need a bridge. RMI requires Java. if you use a subset you can use > Corba/IIOP clients. > >>> On Sep 14, 2020, at 11:11 AM, Henrik Johansson wrote: >>> >>  >> Newrelic has some tools for this but I

Re: [go-nuts] JMX Call with non-HTTP

2020-09-14 Thread Robert Engels
You need a bridge. RMI requires Java. if you use a subset you can use Corba/IIOP clients. > On Sep 14, 2020, at 11:11 AM, Henrik Johansson wrote: > >  > Newrelic has some tools for this but I think they require agents installed in > the Java side. > > I think you are better off going for

Re: [go-nuts] JMX Call with non-HTTP

2020-09-14 Thread Henrik Johansson
Newrelic has some tools for this but I think they require agents installed in the Java side. I think you are better off going for the Jolokia solution but perhaps there is something you can use from Newrelic. On Mon, 14 Sep 2020, 17:52 Venkata Madhusudhan Rao V, wrote: > Hi All, > I have a

[go-nuts] JMX Call with non-HTTP

2020-09-14 Thread Venkata Madhusudhan Rao V
Hi All, I have a java-based application with JMX enabled. I was able to remotely connected to the java-based application from JConsole using jmx url (service:jmx:rmi:///jndi/rmi://localhost:/jmxrmi). Now, I want to connect from Go-client to capture the metrics. I looked at *Jolokia