uWSGI stats using uwsgitop and socket showing JSONDecodeError

2.3k Views Asked by At

I am not getting uwsgi stats using uwsgitop and socket. I have put uwsgi configuration for the stats with socket and when I tried to get the stat using the command:

uwsgitop /var/www/uwsgi/proj.socket

It's throwing the error

JSONDecodeError: Expecting value: line 1 column 1 (char 0)

I am using uwsgi version 2.0.17.1.

Here is my uwsgi ini file

[uwsgi]

# Multi Thread Support
enable-threads = true

# Django-related settings
# the base directory (full path)
chdir           = /home/user/base-dir/proj-path/
# Django's wsgi file
module          = proj.wsgi
# the virtualenv (full path)
home            = /home/user/base-path/

# process-related settings
# master
master          = true
# maximum number of worker processes
processes       = 10

socket = /var/www/uwsgi/proj.socket
# ... with appropriate permissions - may be needed
chmod-socket    = 666
# clear environment on exit
vacuum          = true
daemonize = /var/www/uwsgi/uwsgi.log
pidfile = /var/www/uwsgi/uwsgi_hub.pid
logto = /var/log/proj_uwsgi%n.log
uid = user
gid = user
http-auto-gzip = true

memory-report = True

py-tracebacker=/var/www/uwsgi/proj.socket

--stats /var/www/uwsgi/proj.socket
1

There are 1 best solutions below

2
Claudiu Fabian Milea On

I think that you should have something like this in your config file:

 socket = /var/www/uwsgi/proj.socket
stats = /var/www/uwsgi/stats.socket

And run uwsgitop on the stats socket, like so:

uwsgitop /var/www/uwsgi/stats.socket