2015-03-09 17:25:09 +00:00
|
|
|
# Overview
|
|
|
|
Jitsi Meet supports logging to an [InfluxDB](http://influxdb.com/) database.
|
|
|
|
|
|
|
|
# Configuration
|
|
|
|
The following needs to be done to enable this functionality.
|
|
|
|
|
|
|
|
## Install InfluxDB
|
|
|
|
The details are outside the scope of the document, see http://influxdb.com/download/ .
|
|
|
|
|
2015-03-13 09:01:16 +00:00
|
|
|
## Create an InfluxDB database
|
|
|
|
Use the InfluxDB admin interface (running on port 8083) and create a database. In this example we name it <code>jitsi_database</code>
|
|
|
|
|
2015-03-09 17:29:47 +00:00
|
|
|
## Enable logging for Jitsi Videobridge
|
2015-03-09 17:25:09 +00:00
|
|
|
Add the following properties to <code>/usr/share/jitsi-videobridge/.sip-communicator/sip-communicator.properties</code>.
|
|
|
|
|
2015-03-09 18:14:05 +00:00
|
|
|
- org.jitsi.videobridge.log.INFLUX_DB_ENABLED=true
|
|
|
|
- org.jitsi.videobridge.log.INFLUX_URL_BASE=http://influxdb.example.com:8086
|
|
|
|
- org.jitsi.videobridge.log.INFLUX_DATABASE=jitsi_database
|
|
|
|
- org.jitsi.videobridge.log.INFLUX_USER=user
|
|
|
|
- org.jitsi.videobridge.log.INFLUX_PASS=pass
|
2015-03-09 17:25:09 +00:00
|
|
|
|
|
|
|
## Enable logging for Jicofo
|
2015-05-29 12:26:37 +00:00
|
|
|
Add the same properties as above to <code>/usr/share/jicofo/.sip-communicator/sip-communicator.properties</code>.
|
2015-03-09 17:25:09 +00:00
|
|
|
|
|
|
|
## Enable logging for Jitsi Meet itself
|
|
|
|
Change "logStats" to "true" in <code>/etc/jitsi/meet/you-domain.config.js</code> or the <code>config.js</code> file used in your installation.
|
|
|
|
|
|
|
|
# User interface
|
|
|
|
You can explore the database using the [Jiloin](https://github.com/jitsi/jiloin) web interface.
|