1. 安装步骤
- 安装并启动 Open-Falcon Agent
- 下载并解压编译好的 Release 包到目标安装目录下
cp conf.example.properties conf.properties
- 修改 conf.properties 配置文件,一般情况下只需要将 jmx.ports 的端口号配置上就可以了
sh control start
sh control tail
查看日志,或者cat var/app.log
以确认程序是否正常启动
2. 参考安装目录
Agent 安装目录:/home/src/github.com/open-falcon/agent/
jmxmon 解压后的目录:/home/src/github.com/open-falcon/agent/jmxmon-v0.0.2
3. 启动 Java 程序配置 JMX Port 参考
java -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9996 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -jar demo.jar
所以 jmx.ports = 9996
4. 参考 conf.properties 配置
# the working dir
workDir=./
# localhost jmx ports, split by comma
jmx.ports=9996
# agent port url
agent.posturl=http://localhost:1988/v1/push
5. 参考 Agent port 配置
可以到 Agent 安装目录下的 cfg.json 查看。
vi /home/src/github.com/open-falcon/agent/cfg.json
"http": {
"enabled": true,
"listen": ":1988",
"backdoor": false
},