Re: Flink JMX Metrics

2018-09-10 Thread Yee-Ning Cheng
Might be related to this https://issues.apache.org/jira/browse/FLINK-10135 -- Sent from: http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/

Re: Flink JMX

2016-08-29 Thread Sreejith S
Thank you very much Chesnay, your pointer on "java.rmi.server.hostname" solved the issue. Now i am able to get flink metrics in 1.1.1 "host" setting in JMX Reporter was because i thought of not exposing JMX metrics as public. Since my flink cluster is in AWS cloud. So i tried to bind it to private

Re: Flink JMX

2016-08-29 Thread Chesnay Schepler
Hello, That you can't access JMX in 1.0.3 even though you set all the JVM JMX options is unrelated to Flink. As such your JMX setup in general is broken. Note that in order to remotely access JMX you usually have to set "java.rmi.server.hostname" system-property on the host as well. Regarding

Re: Flink JMX

2016-08-29 Thread Robert Metzger
Hi, I think in Flink 1.1.1 JMX will be started on port 8080, 8081 or 8082 (on the JM, 8081 is probably occupied by the web interface). On Mon, Aug 29, 2016 at 1:25 PM, Sreejith S wrote: > Hi Chesnay, > > I added the below configuration in flink-conf in each taskmanagers. (flink > 1.0.3 version

Re: Flink JMX

2016-08-29 Thread Sreejith S
Hi Chesnay, I added the below configuration in flink-conf in each taskmanagers. (flink 1.0.3 version ) # Enable JMX env.java.opts: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port= -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -D

Re: Flink JMX

2016-08-29 Thread Chesnay Schepler
Hello, can you post the jmx config entries and give us more details on how you want to access it? Regards, Chesnay On 29.08.2016 12:09, Sreejith S wrote: Hi All, I am using Flink-1.1.1 and i enabled JMX metrics in configuration file. In the task manger log i can see JMX is running. Is th