This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/statsd/info.php
2019-08-07 15:40:01 -05:00

25 lines
692 B
PHP

<?php
/*
* Name: StatsD Interface
* Author: Shish <webmaster@shishnet.org>
* License: GPLv2
* Visibility: admin
* Description: Sends Shimmie stats to a StatsD server
* Documentation:
*
*/
class StatsDInterfaceInfo extends ExtensionInfo
{
public const KEY = "statsd";
public $key = self::KEY;
public $name = "StatsD Interface";
public $url = self::SHIMMIE_URL;
public $authors = self::SHISH_AUTHOR;
public $license = self::LICENSE_GPLV2;
public $visibility = self::VISIBLE_ADMIN;
public $description = "Sends Shimmie stats to a StatsD server";
public $documentation = "define('STATSD_HOST', 'my.server.com:8125'); in shimmie.conf.php to set the host";
}