Skip to main content

No project description provided

Project description

WebStats is a plugin that provide a web access to channel based statistics.

This plugin requires Limnoria.

It is designed to be used on active channels, so it implements a cache system. Don't worry if you have enabled statistics and nothing happens on the Web interface in the following hour.

You need pygraphviz (python-pygraphviz in Debian) for the "links" graph.

Reverse proxies

apache

If you want to use Apache as a proxy for your WebStats instance, you can use this sample configuration:

<VirtualHost 0.0.0.0:80>
        ServerName stats.supybot.fr.cr
        ServerAlias stats.supybot-fr.tk
        <Location />
                ProxyPass http://localhost:8080/
                SetEnv force-proxy-request-1.0 1
                SetEnv proxy-nokeepalive 1
        </Location>
</VirtualHost>

nginx

Create a new site for your bot /etc/nginx/sites-enabled/bot:

server {
    listen 80;
    listen [::]:80;
    server_name stats.supybot.fr.cr;

    location / {
        proxy_pass http://localhost:8080/;
    }
}

Project details


Release history Release notifications | RSS feed

This version

0.5

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

limnoria-webstats-0.5.tar.gz (13.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page