Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
4b731fd6
提交
4b731fd6
authored
1月 25, 2011
作者:
Daniel Swarbrick
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tidy up subagent and #defines
上级
636c1ecb
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
73 行增加
和
82 行删除
+73
-82
mod_snmp.c
src/mod/event_handlers/mod_snmp/mod_snmp.c
+1
-1
subagent.c
src/mod/event_handlers/mod_snmp/subagent.c
+58
-81
subagent.h
src/mod/event_handlers/mod_snmp/subagent.h
+14
-0
没有找到文件。
src/mod/event_handlers/mod_snmp/mod_snmp.c
浏览文件 @
4b731fd6
...
@@ -101,8 +101,8 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_snmp_load)
...
@@ -101,8 +101,8 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_snmp_load)
SWITCH_MODULE_RUNTIME_FUNCTION
(
mod_snmp_runtime
)
SWITCH_MODULE_RUNTIME_FUNCTION
(
mod_snmp_runtime
)
{
{
if
(
!
globals
.
shutdown
)
{
if
(
!
globals
.
shutdown
)
{
/* Block on select() */
switch_mutex_lock
(
globals
.
mutex
);
switch_mutex_lock
(
globals
.
mutex
);
/* Block on select() */
agent_check_and_process
(
1
);
agent_check_and_process
(
1
);
switch_mutex_unlock
(
globals
.
mutex
);
switch_mutex_unlock
(
globals
.
mutex
);
}
}
...
...
src/mod/event_handlers/mod_snmp/subagent.c
浏览文件 @
4b731fd6
...
@@ -37,31 +37,12 @@
...
@@ -37,31 +37,12 @@
#include "subagent.h"
#include "subagent.h"
static
oid
identity_oid
[]
=
{
1
,
3
,
6
,
1
,
4
,
1
,
27880
,
1
,
1
};
static
oid
systemStats_oid
[]
=
{
1
,
3
,
6
,
1
,
4
,
1
,
27880
,
1
,
2
};
/* identity sub-IDs - these must match MIB */
enum
{
versionString_oid
=
1
,
uuid_oid
};
/* systemStats sub-IDs - these must match MIB */
enum
{
uptime_oid
=
1
,
sessionsSinceStartup_oid
,
currentSessions_oid
,
maxSessions_oid
,
currentCalls_oid
,
sessionsPerSecond_oid
,
maxSessionsPerSecond_oid
};
void
init_subagent
(
void
)
void
init_subagent
(
void
)
{
{
DEBUGMSGTL
((
"init_nstAgentSubagentObject"
,
"Initializing
\n
"
));
static
oid
identity_oid
[]
=
{
1
,
3
,
6
,
1
,
4
,
1
,
27880
,
1
,
1
};
static
oid
systemStats_oid
[]
=
{
1
,
3
,
6
,
1
,
4
,
1
,
27880
,
1
,
2
};
DEBUGMSGTL
((
"init_subagent"
,
"Initializing
\n
"
));
netsnmp_register_scalar_group
(
netsnmp_create_handler_registration
(
"identity"
,
handle_identity
,
identity_oid
,
OID_LENGTH
(
identity_oid
),
HANDLER_CAN_RONLY
),
1
,
2
);
netsnmp_register_scalar_group
(
netsnmp_create_handler_registration
(
"identity"
,
handle_identity
,
identity_oid
,
OID_LENGTH
(
identity_oid
),
HANDLER_CAN_RONLY
),
1
,
2
);
netsnmp_register_scalar_group
(
netsnmp_create_handler_registration
(
"systemStats"
,
handle_systemStats
,
systemStats_oid
,
OID_LENGTH
(
systemStats_oid
),
HANDLER_CAN_RONLY
),
1
,
7
);
netsnmp_register_scalar_group
(
netsnmp_create_handler_registration
(
"systemStats"
,
handle_systemStats
,
systemStats_oid
,
OID_LENGTH
(
systemStats_oid
),
HANDLER_CAN_RONLY
),
1
,
7
);
...
@@ -70,28 +51,26 @@ void init_subagent(void)
...
@@ -70,28 +51,26 @@ void init_subagent(void)
int
handle_identity
(
netsnmp_mib_handler
*
handler
,
netsnmp_handler_registration
*
reginfo
,
netsnmp_agent_request_info
*
reqinfo
,
netsnmp_request_info
*
requests
)
int
handle_identity
(
netsnmp_mib_handler
*
handler
,
netsnmp_handler_registration
*
reginfo
,
netsnmp_agent_request_info
*
reqinfo
,
netsnmp_request_info
*
requests
)
{
{
static
char
const
version
[]
=
SWITCH_VERSION_FULL
;
char
uuid
[
40
]
=
""
;
netsnmp_request_info
*
request
=
NULL
;
netsnmp_request_info
*
request
=
NULL
;
oid
subid
;
oid
subid
;
static
char
const
version
[]
=
SWITCH_VERSION_FULL
;
char
uuid
[
40
]
=
""
;
switch
(
reqinfo
->
mode
)
{
switch
(
reqinfo
->
mode
)
{
case
MODE_GET
:
case
MODE_GET
:
for
(
request
=
requests
;
request
;
request
=
request
->
next
)
{
subid
=
requests
->
requestvb
->
name
[
reginfo
->
rootoid_len
-
2
];
subid
=
request
->
requestvb
->
name
[
reginfo
->
rootoid_len
-
2
];
switch
(
subid
)
{
switch
(
subid
)
{
case
ID_VERSION_STR
:
case
versionString_oid
:
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_OCTET_STR
,
(
u_char
*
)
&
version
,
strlen
(
version
));
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_OCTET_STR
,
(
u_char
*
)
&
version
,
strlen
(
version
));
break
;
break
;
case
ID_UUID
:
case
uuid_oid
:
strncpy
(
uuid
,
switch_core_get_uuid
(),
sizeof
(
uuid
));
strncpy
(
uuid
,
switch_core_get_uuid
(),
sizeof
(
uuid
));
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_OCTET_STR
,
(
u_char
*
)
&
uuid
,
strlen
(
uuid
));
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_OCTET_STR
,
(
u_char
*
)
&
uuid
,
strlen
(
uuid
));
break
;
break
;
default:
default:
snmp_log
(
LOG_WARNING
,
"Unregistered OID-suffix requested (%d)
\n
"
,
(
int
)
subid
);
snmp_log
(
LOG_WARNING
,
"Unregistered OID-suffix requested (%d)
\n
"
,
(
int
)
subid
);
netsnmp_set_request_error
(
reqinfo
,
request
,
SNMP_NOSUCHOBJECT
);
netsnmp_set_request_error
(
reqinfo
,
request
,
SNMP_NOSUCHOBJECT
);
}
}
}
break
;
break
;
...
@@ -114,47 +93,45 @@ int handle_systemStats(netsnmp_mib_handler *handler, netsnmp_handler_registratio
...
@@ -114,47 +93,45 @@ int handle_systemStats(netsnmp_mib_handler *handler, netsnmp_handler_registratio
switch
(
reqinfo
->
mode
)
{
switch
(
reqinfo
->
mode
)
{
case
MODE_GET
:
case
MODE_GET
:
for
(
request
=
requests
;
request
;
request
=
request
->
next
)
{
subid
=
requests
->
requestvb
->
name
[
reginfo
->
rootoid_len
-
2
];
subid
=
request
->
requestvb
->
name
[
reginfo
->
rootoid_len
-
2
];
switch
(
subid
)
{
switch
(
subid
)
{
case
SS_UPTIME
:
case
uptime_oid
:
uptime
=
switch_core_uptime
()
/
10000
;
uptime
=
switch_core_uptime
()
/
10000
;
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_TIMETICKS
,
(
u_char
*
)
&
uptime
,
sizeof
(
uptime
));
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_TIMETICKS
,
(
u_char
*
)
&
uptime
,
sizeof
(
uptime
));
break
;
break
;
case
SS_SESSIONS_SINCE_STARTUP
:
case
sessionsSinceStartup_oid
:
int_val
=
switch_core_session_id
()
-
1
;
int_val
=
switch_core_session_id
()
-
1
;
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_COUNTER
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_COUNTER
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
break
;
break
;
case
SS_CURRENT_SESSIONS
:
case
currentSessions_oid
:
int_val
=
switch_core_session_count
();
int_val
=
switch_core_session_count
();
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_GAUGE
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_GAUGE
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
break
;
break
;
case
SS_MAX_SESSIONS
:
case
maxSessions_oid
:
switch_core_session_ctl
(
SCSC_MAX_SESSIONS
,
&
int_val
);;
switch_core_session_ctl
(
SCSC_MAX_SESSIONS
,
&
int_val
);;
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_GAUGE
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_GAUGE
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
break
;
break
;
case
SS_CURRENT_CALLS
:
case
currentCalls_oid
:
/*
/*
* This is zero for now, since there is no convenient way to get total call
* This is zero for now, since there is no convenient way to get total call
* count (not to be confused with session count), without touching the
* count (not to be confused with session count), without touching the
* database.
* database.
*/
*/
int_val
=
0
;
int_val
=
0
;
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_GAUGE
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_GAUGE
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
break
;
break
;
case
SS_SESSIONS_PER_SECOND
:
case
sessionsPerSecond_oid
:
switch_core_session_ctl
(
SCSC_LAST_SPS
,
&
int_val
);
switch_core_session_ctl
(
SCSC_LAST_SPS
,
&
int_val
);
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_GAUGE
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_GAUGE
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
break
;
break
;
case
SS_MAX_SESSIONS_PER_SECOND
:
case
maxSessionsPerSecond_oid
:
switch_core_session_ctl
(
SCSC_SPS
,
&
int_val
);
switch_core_session_ctl
(
SCSC_SPS
,
&
int_val
);
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_GAUGE
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
snmp_set_var_typed_value
(
requests
->
requestvb
,
ASN_GAUGE
,
(
u_char
*
)
&
int_val
,
sizeof
(
int_val
));
break
;
break
;
default:
default:
snmp_log
(
LOG_WARNING
,
"Unregistered OID-suffix requested (%d)
\n
"
,
(
int
)
subid
);
snmp_log
(
LOG_WARNING
,
"Unregistered OID-suffix requested (%d)
\n
"
,
(
int
)
subid
);
netsnmp_set_request_error
(
reqinfo
,
request
,
SNMP_NOSUCHOBJECT
);
netsnmp_set_request_error
(
reqinfo
,
request
,
SNMP_NOSUCHOBJECT
);
}
}
}
break
;
break
;
...
...
src/mod/event_handlers/mod_snmp/subagent.h
浏览文件 @
4b731fd6
#ifndef subagent_H
#ifndef subagent_H
#define subagent_H
#define subagent_H
/* .1.3.6.1.4.1.27880.1.1 */
#define ID_VERSION_STR 1
#define ID_UUID 2
/* .1.3.6.1.4.1.27880.1.2 */
#define SS_UPTIME 1
#define SS_SESSIONS_SINCE_STARTUP 2
#define SS_CURRENT_SESSIONS 3
#define SS_MAX_SESSIONS 4
#define SS_CURRENT_CALLS 5
#define SS_SESSIONS_PER_SECOND 6
#define SS_MAX_SESSIONS_PER_SECOND 7
void
init_subagent
(
void
);
void
init_subagent
(
void
);
Netsnmp_Node_Handler
handle_identity
;
Netsnmp_Node_Handler
handle_identity
;
Netsnmp_Node_Handler
handle_systemStats
;
Netsnmp_Node_Handler
handle_systemStats
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论