Re: Re: How to push metrics to graphite - jmxtrans does not work

2014-12-02 Thread David Montgomery
Hi, Thanks for the help. I found the issue.I was appending to the bottom when I should have placed the below line at the top of the file. echo 'KAFKA_JMX_OPTS="-Dcom.sun. management.jmxremote=true -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false"' |

Re: Re: How to push metrics to graphite - jmxtrans does not work

2014-12-02 Thread Jason Rosenberg
fwiw, we wrap the kafka server in our java service container framework. This allows us to use the default GraphiteReporter class that is part of the yammer metrics library (which is used by kafka directly). So it works seemlessly. (We've since changed our use of GraphiteReporter to instead send a

Re: Re: How to push metrics to graphite - jmxtrans does not work

2014-12-02 Thread Otis Gospodnetic
Hi, You can make use of this documentation aimed at JMX and monitoring: https://sematext.atlassian.net/wiki/display/PUBSPM/SPM+Monitor+-+Standalone There is a section about Kafka and the information is not SPM-specific. Otis -- Monitoring * Alerting * Anomaly Detection * Centralized Log Manageme

Re: Re: How to push metrics to graphite - jmxtrans does not work

2014-12-02 Thread YuanJia Li
Hi David, Just edit "kafka-server-start.sh", and add "export JMX_PORT=",it will work. Yuanjia From: David Montgomery Date: 2014-12-03 04:47 To:users Subject: Re: How to push metrics to graphite - jmxtrans does not work Hi, I am seeing this in the logs and wondering what "jmx_port":-1

Re: Re: How to push metrics to graphite - jmxtrans does not work

2014-12-02 Thread YuanJia Li
Jmxtrans should connect to the jmxremote port. Try to run "ps -aux |grep kafka", and find the process contain -Dcom.sun.management.jmxremote.port or not. If not, try to edit "kafka-server-start.sh", add "export JMX_PORT=".