You are here

function statsd_menu in StatsD 6

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

Implementation of hook_menu()

File

./statsd.module, line 7

Code

function statsd_menu() {
  $items['admin/settings/logging/statsd'] = array(
    'title' => 'StatsD',
    'description' => 'Settings for statsd logging. StatsD is a Node JS daemon that aggregates statistics for visibility in Graphite. Best suited for compiling arbitrary statistics on various developer implemented metrics, this module can also be used to send all system events (via watchdog calls) to Graphite.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'statsd_admin_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'statsd.admin.inc',
  );
  return $items;
}