Jiloin (Jitsi Logging Interface) in a web-interface used to display the data logged by a Jitsi Meet installation to an InfluxDB database.
First you need to enable logging to InfluxDB in your Jitsi Meet installation.
For example, using nginx, you can do the following:
cd /opt
git clone https://github.com/jitsi/jiloin
Create /etc/nginx/sites-enabled/jiloin.example.com with the following contents:
server {
listen 80;
server_name jiloin.example.com;
root /opt/jiloin;
}
Note that it is currently mandatory to have jiloin installed in the root of the domain (that is, you can't use example.com/jiloin/, it needs to be jiloin.example.com/). This is a known issue.
You need to set the hostname and port number for access to InfluxDB, set ssl:true
if InfluxDB is setup to support it (usually on port 8087), and the name of the database (this has to match the name configured while setting up logging for Jitsi Meet).
- jiloin uses the same hostname as the influxdb instance
- the protocol (http or https) is the same in the browser and in
services/config.js
- InfluxDB is configured with the same hostname as jiloin (look for the "hostname" field in
config.toml
)