41 lines
2.4 KiB
PHP
41 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage poller
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
$table_defs['NS-ROOT-MIB']['nsAAAStatsGroup'] = [
|
|
'table' => 'nsAAAStatsGroup',
|
|
'numeric' => '.1.3.6.1.4.1.5951.4.1.1.67',
|
|
'mib' => 'NS-ROOT-MIB',
|
|
'mib_dir' => 'citrix',
|
|
'file' => 'nsAAAStatsGroup.rrd',
|
|
'descr' => 'Netscaler AAA Statistics',
|
|
'graphs' => ['nsAAAAuths', 'nsAAASessions', 'nsAAAICAConnections'],
|
|
'ds_rename' => ['aaa' => ''],
|
|
'oids' => [
|
|
'aaaAuthFail' => ['numeric' => '1', 'descr' => 'Count of authentication failures.', 'ds_min' => '0'],
|
|
'aaaAuthSuccess' => ['numeric' => '2', 'descr' => 'Count of authentication successes.', 'ds_min' => '0'],
|
|
'aaaAuthNonHttpFail' => ['numeric' => '3', 'descr' => 'Count of non HTTP connections that failed authorization.', 'ds_min' => '0'],
|
|
'aaaAuthOnlyHttpFail' => ['numeric' => '4', 'descr' => 'Count of HTTP connections that failed authorization.', 'ds_min' => '0'],
|
|
'aaaAuthNonHttpSuccess' => ['numeric' => '5', 'descr' => 'Count of non HTTP connections that succeeded authorization.', 'ds_min' => '0'],
|
|
'aaaAuthOnlyHttpSuccess' => ['numeric' => '6', 'descr' => 'Count of HTTP connections that succeeded authorization.', 'ds_min' => '0'],
|
|
'aaaTotSessions' => ['numeric' => '7', 'descr' => 'Count of all SmartAccess AAA sessions.', 'ds_min' => '0'],
|
|
'aaaTotSessionTimeout' => ['numeric' => '8', 'descr' => 'Count of AAA sessions that have timed out.', 'ds_min' => '0'],
|
|
'aaaCurSessions' => ['numeric' => '9', 'descr' => 'Count of current SmartAccess AAA sessions.', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'aaaCurICASessions' => ['numeric' => '10', 'descr' => 'Count of current Basic ICA only sessions.', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'aaaCurTMSessions' => ['numeric' => '11', 'descr' => 'Count of current AAATM sessions.', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'aaaTotTMSessions' => ['numeric' => '12', 'descr' => 'Count of all AAATM sessions.', 'ds_min' => '0'],
|
|
'aaaCurICAOnlyConn' => ['numeric' => '13', 'descr' => 'Count of current Basic ICA only connections.', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'aaaCurICAConn' => ['numeric' => '14', 'descr' => 'Count of current SmartAccess ICA connections.', 'ds_type' => 'GAUGE', 'ds_min' => '0']
|
|
]
|
|
];
|
|
|
|
// EOF
|