summaryrefslogtreecommitdiffstats
path: root/package/libipfix/extra/append-wprobe-ie.pl
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-12-19 22:19:09 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-12-19 22:19:09 +0000
commitf87f98d0c5b344b0973990cc628caf4afab4f928 (patch)
tree94dda8aa1053ef8a3a7935657fbd04d50a93db0d /package/libipfix/extra/append-wprobe-ie.pl
parent8b5cfa1fdeb54d644d0a67a84624a2ba93494b54 (diff)
wprobe: export raw values (n, s, ss) to ipfix collectors for improved measurement accuracy
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18852 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libipfix/extra/append-wprobe-ie.pl')
-rw-r--r--package/libipfix/extra/append-wprobe-ie.pl11
1 files changed, 6 insertions, 5 deletions
diff --git a/package/libipfix/extra/append-wprobe-ie.pl b/package/libipfix/extra/append-wprobe-ie.pl
index 3a8db3fe1..fa838ff76 100644
--- a/package/libipfix/extra/append-wprobe-ie.pl
+++ b/package/libipfix/extra/append-wprobe-ie.pl
@@ -1,9 +1,9 @@
use strict;
my @fields = (
- [ "_avg", "FLOAT", " - Average" ],
- [ "_stdev", "FLOAT", " - Standard deviation" ],
- [ "_n", "UINT", " - Number of samples" ]
+ [ "_n", "UINT", " - Number of samples", 4 ],
+ [ "_s", "UINT", " - Sum of samples", 8 ],
+ [ "_ss", "UINT", " - Sum of squared samples", 8 ],
);
my $file = $ARGV[0] or die "Syntax: $0 <file>\n";
@@ -23,7 +23,7 @@ while (<STDIN>) {
my $descr = $4;
my @f;
if ($counter) {
- @f = [ "", "UINT", "" ];
+ @f = [ "", "UINT", "", 4];
} else {
@f = @fields;
}
@@ -33,7 +33,8 @@ while (<STDIN>) {
my $N = uc $n;
my $ftype = $f->[1];
my $fdesc = $f->[2];
- print "$nr, IPFIX_FT_WPROBE_$rfield$N, 4, IPFIX_CODING_$ftype, \"$nfield$n\", \"$descr$fdesc\"\n";
+ my $size = $f->[3];
+ print "$nr, IPFIX_FT_WPROBE_$rfield$N, $size, IPFIX_CODING_$ftype, \"$nfield$n\", \"$descr$fdesc\"\n";
}
};
}