Hello,
I'm trying to get the dispatcher status from kamailio through the UDP
datagram but for some reason, it is getting just part of the output. Is
there any buffer that I have to increase to get the complete output?
command used:
```
echo '{"jsonrpc": "2.0", "method":
"dispatcher.list", "reply_name":
"kamailio_reply_fifo", "id": 1}' | nc -u 192.168.1.1 8090
```
kamailio related config:
modparam("jsonrpcs", "fifo_name",
"/tmp/kamailio_request.fifo")
modparam("jsonrpcs", "transport", 6)
modparam("jsonrpcs", "fifo_mode", 0600)
modparam("jsonrpcs", "fifo_user", "kamailio")
modparam("jsonrpcs", "dgram_socket",
"udp:MY_INTERNAL_IP_ADDR:8090")
modparam("jsonrpcs", "dgram_timeout", 2000)
modparam("jsonrpcs", "pretty_format", 1)
output:
[image: image.png]
Thanks