You are here

function statsd_boot in StatsD 6

Same name and namespace in other branches
  1. 7.2 statsd.module \statsd_boot()
  2. 7 statsd.module \statsd_boot()

Implementation of hook_boot()

File

./statsd.module, line 27

Code

function statsd_boot() {
  if (variable_get('statsd_performance_events', TRUE)) {
    statsd_timer(microtime(TRUE));
  }
}