EMQ X 的 RabbitMQ 插件,消息转发到RabbitMQ.
# RabbitMQ broker 配置
hook.rabbit.host = 127.0.0.1
hook.rabbit.port = 5672
hook.rabbit.virtual_host = /
hook.rabbit.username = learn_emqx
hook.rabbit.password = learn_emqx
hook.rabbit.heartbeat = 10
hook.rabbit.auto_reconnect = 1
# hook.rabbit.ssl_opts = ""
hook.rabbit.pool_size = 10
# 转发规则配置
# type: RabbitMQ 交换机类型
# exchange: RabbitMQ 交换机名称
# routing: RabbitMQ 路由Key
# topic: EMQX topic过滤器,指定那些topic的消息转发到RabbitMQ
hook.rabbit.rule.client.connect.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.client.connack.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.client.connected.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.client.disconnected.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.client.subscribe.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.client.unsubscribe.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.session.subscribed.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.session.unsubscribed.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.session.terminated.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.message.publish.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.message.delivered.1 = {"type": "topic", "exchange" : "emqx.client.events"}
hook.rabbit.rule.message.acked.1 = {"type": "topic", "exchange" : "emqx.client.events"}
- client.connected
{
"action":"client_connected",
"clientid":"C_1492410235117",
"username":"C_1492410235117",
"keepalive": 60,
"ipaddress": "127.0.0.1",
"proto_ver": 4,
"connected_at": 1556176748,
"conn_ack":0
}
- client.disconnected
{
"action":"client_disconnected",
"clientid":"C_1492410235117",
"username":"C_1492410235117",
"reason":"normal"
}
- client.subscribe
{
"action":"client_subscribe",
"clientid":"C_1492410235117",
"username":"C_1492410235117",
"topic":"world",
"opts":{
"qos":0
}
}
- client.unsubscribe
{
"action":"client_unsubscribe",
"clientid":"C_1492410235117",
"username":"C_1492410235117",
"topic":"world"
}
- session.created
{
"action":"session_created",
"clientid":"C_1492410235117",
"username":"C_1492410235117"
}
- session.subscribed
{
"action":"session_subscribed",
"clientid":"C_1492410235117",
"username":"C_1492410235117",
"topic":"world",
"opts":{
"qos":0
}
}
- session.unsubscribed
{
"action":"session_unsubscribed",
"clientid":"C_1492410235117",
"username":"C_1492410235117",
"topic":"world"
}
- session.terminated
{
"action":"session_terminated",
"clientid":"C_1492410235117",
"username":"C_1492410235117",
"reason":"normal"
}
- message.publish
{
"action":"message_publish",
"from_client_id":"C_1492410235117",
"from_username":"C_1492410235117",
"topic":"world",
"qos":0,
"retain":true,
"payload":"Hello world!",
"ts":1492412774
}
- message.deliver
{
"action":"message_delivered",
"clientid":"C_1492410235117",
"username":"C_1492410235117",
"from_client_id":"C_1492410235117",
"from_username":"C_1492410235117",
"topic":"world",
"qos":0,
"retain":true,
"payload":"Hello world!",
"ts":1492412826
}
- message.acked
{
"action":"message_acked",
"clientid":"C_1492410235117",
"username":"C_1492410235117",
"from_client_id":"C_1492410235117",
"from_username":"C_1492410235117",
"topic":"world",
"qos":1,
"retain":true,
"payload":"Hello world!",
"ts":1492412914
}
修改自emqx_web_hook.
Apache License Version 2.0