Ver código fonte

Adds instructions to enable logging.

j8
Boris Grozev 10 anos atrás
pai
commit
f14329f2cd
1 arquivos alterados com 28 adições e 0 exclusões
  1. 28
    0
      doc/influxdb.md

+ 28
- 0
doc/influxdb.md Ver arquivo

@@ -0,0 +1,28 @@
1
+# Overview
2
+Jitsi Meet supports logging to an [InfluxDB](http://influxdb.com/) database.
3
+
4
+# Configuration
5
+The following needs to be done to enable this functionality.
6
+
7
+## Install InfluxDB
8
+The details are outside the scope of the document, see http://influxdb.com/download/ .
9
+
10
+## Enable logging on for Jitsi Videobridge
11
+Add the following properties to <code>/usr/share/jitsi-videobridge/.sip-communicator/sip-communicator.properties</code>.
12
+
13
+```
14
+org.jitsi.videobridge.log.INFLUX\_DB\_ENABLED=true
15
+org.jitsi.videobridge.log.INFLUX\_URL\_BASE=http://influxdb.example.com:8086
16
+org.jitsi.videobridge.log.INFLUX\_DATABASE=jitsi_database
17
+org.jitsi.videobridge.log.INFLUX\_USER=user
18
+org.jitsi.videobridge.log.INFLUX\_PASS=pass
19
+```
20
+
21
+## Enable logging for Jicofo
22
+Add the same properties as above to <code>/usr/share/jitsi-videobridge/.sip-communicator/sip-communicator.properties</code>.
23
+
24
+## Enable logging for Jitsi Meet itself
25
+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.
26
+
27
+# User interface
28
+You can explore the database using the [Jiloin](https://github.com/jitsi/jiloin) web interface.

Carregando…
Cancelar
Salvar