Skip to content

How to view the number of online editor connections? #1798

Answered by ShockwaveNN
SizerSong asked this question in Q&A
Discussion options

You must be logged in to vote

There is statistics accessible only from localhost of your server at

curl localhost/info/info.json

Also you can modify /etc/onlyoffice/documentserver/nginx/includes/ds-docservice.conf
part

# Allow "/info" interface only from 127.0.0.1 by default
# Comment out lines allow 127.0.0.1; and deny all; 
# of below section to turn on the info page
location ~* ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?\/(info)(\/.*)$ {
  allow 127.0.0.1;
  deny all;
  proxy_pass http://docservice/$2$3;
}

To be accessible from outside and it will be shown at http://docserver_url/info

Or you can contact our sales team and they help you decide that numbers are best suited for you

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@SizerSong
Comment options

@garciadavy
Comment options

Answer selected by SizerSong
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #1797 on June 17, 2022 06:44.