Project

General

Profile

Actions

Docs ModUserOnline » History » Revision 20

« Previous | Revision 20/35 (diff) | Next »
moo, 2007-07-07 15:29


TracNav(DocsToc)) {{{
#!rst ==========
UserOnline ==========

----------------------
Module: mod_useronline
----------------------

.. meta::
:keywords: lighttpd, online user, tracking, unique ips

.. contents:: Table of Contents

Description
-----------
Module that tracks users online/active by unique ips (no cookies), includes counting hits, and linking into mod_status (http://trac.lighttpd.net/trac/wiki/Docs%3AModStatus#server-statistics).

Background
----------

Prevously, I made a module in PHP that performed a similar function of tracking online users. At a certain point I realized it to be a bit wasteful with resources, and decided to make the module into Lighttpd.

I started baseing the code off mod_rewrite, using pcre to match patterns to decide whether to track a given page or not. I emailed my code to Jan for review and in hopes of getting it included into one of the branches so everyone can make use of it. Jan replied shortly after with a few suggestions/issues that improved the module considerably (as I am sort of new to Lighttpd internal workings).

My name is Wojciech (nick: Wojtek) and I go by the alias Wojjie online. I run/own http://www.game-monitor.com , which is the site that is currently running this module and the site I made reference to above.

If you wish to contact me directly via email, I can be reached at: (please note: I do get alot of spam, so put [mod_useronline] or [lighttpd] in the subject so your email stands out, and just hope my spam filter does not pick it up). Another method to contact me is to get on irc, and idle in Lighttpd's irc channel (irc://irc.freenode.net/lighttpd) where I will most likely be idleing.

Installation
------------
(borrowed from mod_geoip instructions)

1) Download mod_useronline.c (http://trac.lighttpd.net/trac/attachment/wiki/Docs/ModUserOnline/mod_useronline.c?format=raw)
2) Copy mod_useronline.c into lighttpd src directory.
3) Edit your src/Makefile.am and add this after the last module:

::

lib_LTLIBRARIES += mod_useronline.la
mod_useronline_la_SOURCES = mod_useronline.c
mod_useronline_la_LDFLAGS = -module -export-dynamic -avoid-version -no-undefined
mod_useronline_la_LIBADD = $(common_libadd)

4) Go back to lighttpd root directory and first do: aclocal && automake && autoconf, after that do: make clean; ./configure --enable-maintainer-mode; make; make install

5) Make sure /usr/local/lib is in your ld.so.conf file and rebuld the ld database (using: ldconfig).

Options
-------

useronline.enable

enable or disable tracking for given area
Default: 0 [disabled]
Example: useronline.enable = 1

useronline.online-age

number of seconds till user/ip is no longer considered online
Default: 300
Example: useronline.online-age = 600

useronline.active-age

number of seconds till user/ip is no longer considered active (note: setting this higher than online_age will give you the same active count as online)
Default: useronline.online-age / 3 = 100
Example: useronline.active-age = 60

useronline.max-ips

max number of ips to track (note: if this limit is hit, the server will not track new users/ips)
Memory Usage: 16 * max-ips (on a 64bit system)
Default: 1024
Example: useronline.max-ips = 4096

useronline.status-name

name to associate to the variables shown in server-statistics (if not set, it will not report)
Default: unset
Example: useronline.status-name = "myWonderfulSite"

Output/Result
-------------

When configured properly, you will notice a few new environment variables accessible to you. In PHP you can output the number of online users like so:

::
<?php echo $_ENV['USERS_ONLINE'] ?>

Here is a current list of environment variables generated by this module:

users_online

number of online users (IPs that last hit >= online_age seconds ago)

users_active

number of active users (IPs that last hit >= min(online_age, active_age) seconds ago)

user_hits

number of hits seen by the current ip while being online/active

users_online_age

number of seconds that a user is still considered online (just reports the current setting)

users_active_age

number of seconds that a user is still considered active (just reports the current setting)

users_online_max_ips

max number of ips tracked (just reports the current setting)

users_online_id

site/conditional id, where the tracking data is located (may be used in the future to link)

Server Statistics
-----------------

If useronline.status_name is set, the module will report to status counters that will be displayed in http://trac.lighttpd.net/trac/wiki/Docs%3AModStatus#server-statistics

Example: (using: useronline.status_name = "myWonderfulSite")
::
useronline.myWonderfulSite.active-age: 100
useronline.myWonderfulSite.id: 9
useronline.myWonderfulSite.max-ips: 4096
useronline.myWonderfulSite.online-age: 300
useronline.myWonderfulSite.users-active: 110
useronline.myWonderfulSite.users-online: 296

The top 4 lines report settings, while the last 2 report the current counters.

You will notice an id number listed, this is the id where the data for that site/conditional is stored. It may be used in the future to link multiple sites/conditonals together to use the same counters, to make it easier to count online users across multiple domains.

Download
--------

09/08/2006 (MM/DD/YYYY)

View: http://trac.lighttpd.net/trac/attachment/wiki/Docs/ModUserOnline/mod_useronline.c

Download: http://trac.lighttpd.net/trac/attachment/wiki/Docs/ModUserOnline/mod_useronline.c?format=raw

}}}

Updated by moo over 16 years ago · 20 revisions