aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/varnish_mib.mib2c10
2 files changed, 3 insertions, 9 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index b56c252..4efd22c 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -23,13 +23,13 @@ varnish_mib_la_SOURCES = \
BUILT_SOURCES = \
varnish_mib.c
varnish_mib.c: varnish_mib.mib2c
.mib2c.c:
- MIBDIRS=${abs_srcdir}:${NET_SNMP_MIBDIRS} MIBS="+VARNISH-MIB" \
+ MIBDIRS=${top_srcdir}/src:${NET_SNMP_MIBDIRS} MIBS="+VARNISH-MIB" \
mib2c -c $< -f $@ varnish
#NET_SNMP_INCLUDES = `$(NET_SNMP_CONFIG) --cflags`
NET_SNMP_INCLUDES =
NET_SNMP_LIBS = `$(NET_SNMP_CONFIG) --libs`
NET_SNMP_EXLIBS = `$(NET_SNMP_CONFIG) --external-libs`
diff --git a/src/varnish_mib.mib2c b/src/varnish_mib.mib2c
index 798fc53..6df10ec 100644
--- a/src/varnish_mib.mib2c
+++ b/src/varnish_mib.mib2c
@@ -67,13 +67,13 @@ $vars{'varnish_translate'} = sub {
backendConnNotAttempted => 'backend_unhealthy',
backendConnToMany => 'backend_busy ',
backendConnFailures => 'backend_fail',
backendConnReuses => 'backend_reuse',
backendConnRecycled => 'backend_recycle',
backendConnUnused => 'backend_toolate',
- totalSessions => 's_sess ',
+ totalSessions => 's_sess',
totalRequests => 's_req ',
totalPipe => 's_pipe',
totalPass => 's_pass',
totalFetch => 's_fetch',
totalHeaderBytes => 's_req_hdrbytes',
totalBodyBytes => 's_req_bodybytes'
@@ -143,19 +143,13 @@ init_$modulename(void)
DEBUGMSGTL(("$name", "Initializing\n"));
@foreach $i scalar@
netsnmp_register_scalar(
netsnmp_create_handler_registration("$i", handle_$i,
${i}_oid, OID_LENGTH(${i}_oid),
- @if !$i.settable@
- HANDLER_CAN_RONLY
- @end@
- @if $i.settable@
- HANDLER_CAN_RWRITE
- @end@
- ));
+ HANDLER_CAN_RONLY));
@end@
varnish_snmp_init();
}
void
deinit_$modulename(void)

Return to:

Send suggestions and report system problems to the System administrator.