Skip to content

MI_HTTP module

This module provides a HTTP transport layer implementation for OpenSIPS’s Management Interface.

None

The following modules must be loaded before this module:

  • httpd module.

Specifies the root path for HTTP requests: http://[opensips_IP]:[opensips_httpd_port]/[root]

The default value is “mi”.

Set root parameter
...
modparam("mi_http", "root", "opensips_mi")
...

Trace destination as defined in the tracing module. Currently the only tracing module is proto_hep. This is where traced mi messages will go.

**WARNING:**A tracing module must be loaded in order for this parameter to work. (for example proto_hep).

Default value is none(not defined).

Set trace_destination parameter
...
modparam("proto_hep", "trace_destination", "[hep_dest]10.0.0.2;transport=tcp;version=3")
modparam("mi_http", "trace_destination", "hep_dest")
...

Filter traced mi commands based on a blacklist or a whitelist. trace_destination must be defined for this parameter to have any purpose. Whitelists can be defined using ‘w’ or ‘W’, blacklists using ‘b’ or ‘B’. The type is separate by the actual blacklist by ’:’. The mi commands in the list must be separated by ’,’.

Defining a blacklists means all the commands that are not blacklisted will be traced. Defining a whitelist means all the commands that are not whitelisted will not be traced. WARNING: One can’t define both a whitelist and a blacklist. Only one of them is allowed. Defining the parameter a second time will just overwrite the first one.

Default value is none(not defined).

Set trace_destination parameter
...
## blacklist ps and which mi commands
## all the other commands shall be traced
modparam("mi_http", "trace_bwlist", "b: ps, which")
...
## allow only sip_trace mi command
## all the other commands will not be traced
modparam("mi_http", "trace_bwlist", "w: sip_trace")
...

No function exported to be used from configuration file.

Commands with large responses (like ul_dump) will fail if the configured size of the httpd buffer is to small (or if there isn’t enough pkg memory configured).

Future realeases of the httpd module will address this issue.

This is an example showing the JSON-RPC request and reply over HTTP for the “ps” MI command.

JSON-RPC request
POST /mi HTTP/1.1
Accept: application/json
Content-Type: application/json
Host: example.net
{"jsonrpc":"2.0","method":"ps","id":10}
HTTP/1.1 200 OK
Content-Length: 317
Content-Type: application/json
Date: Fri, 01 Nov 2013 12:00:00 GMT
{"jsonrpc":"2.0","result":{"Processes":[{"ID":0,"PID":9467,"Type":"attendant"},{"ID":1,"PID":9468,"Type":"HTTPD127.0.0.1:8008"},{"ID":3,"PID":9470,"Type":"time_keeper"},{"ID":4,"PID":9471,"Type":"timer"},{"ID":5,"PID":9472,"Type":"SIPreceiverudp:127.0.0.1:5060"},{"ID":7,"PID":9483,"Type":"Timerhandler"},]},"id":10}

Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)

#NameDevScoreCommitsLines++Lines—
1.Vlad Patrascu (@rvlad-patrascu)42510061650
2.Stephane Alnet2051270238
3.Razvan Crainea (@razvancrainea)171321982
4.Ionut Ionita (@ionutrazvanionita)141028059
5.Bogdan-Andrei Iancu (@bogdan-iancu)116204138
6.Liviu Chircu (@liviuchircu)973137
7.Stefan Darius (@dariusstefan)7419027
8.Vlad Paiu (@vladpaiu)5394
9.Peter Lemenkov (@lemenkov)3111

(1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits)

(2) including any documentation-related commits, excluding merge commits

(3) ignoring whitespace edits, renamed files and auto-generated files

#NameCommit Activity
1.Stefan Darius (@dariusstefan)Jun 2026 - Jul 2026
2.Razvan Crainea (@razvancrainea)Dec 2013 - Jun 2026
3.Vlad Patrascu (@rvlad-patrascu)May 2017 - Apr 2019
4.Bogdan-Andrei Iancu (@bogdan-iancu)Jul 2014 - Apr 2019
5.Peter Lemenkov (@lemenkov)Jun 2018 - Jun 2018
6.Liviu Chircu (@liviuchircu)Jul 2014 - Jun 2018
7.Ionut Ionita (@ionutrazvanionita)May 2016 - Feb 2017
8.Vlad Paiu (@vladpaiu)Nov 2013 - Jan 2016
9.Stephane AlnetOct 2013 - Nov 2013

(1) including any documentation-related commits, excluding merge commits

Last edited by: Razvan Crainea (@razvancrainea), Vlad Patrascu (@rvlad-patrascu), Peter Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu), Ionut Ionita (@ionutrazvanionita), Bogdan-Andrei Iancu (@bogdan-iancu), Stephane Alnet.

All documentation files (i.e. .md extension) are licensed under the Creative Common License 4.0