summaryrefslogtreecommitdiffstats
path: root/package/libipfix/extra/append-wprobe-ie.pl
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-29 02:12:21 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-29 02:12:21 +0000
commitf60995ebe3f29171582fbf3eb774b5add86cae18 (patch)
tree08521f933d0c96b78573ff54a1baf4b5de6467ae /package/libipfix/extra/append-wprobe-ie.pl
parent0fabc5d09655d184e4bea9d890311fab7b793afd (diff)
libipfix: add additional IEs for wprobe use
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15061 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libipfix/extra/append-wprobe-ie.pl')
-rw-r--r--package/libipfix/extra/append-wprobe-ie.pl25
1 files changed, 16 insertions, 9 deletions
diff --git a/package/libipfix/extra/append-wprobe-ie.pl b/package/libipfix/extra/append-wprobe-ie.pl
index e3a44f0d7..3a8db3fe1 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" ]
+ [ "_avg", "FLOAT", " - Average" ],
+ [ "_stdev", "FLOAT", " - Standard deviation" ],
+ [ "_n", "UINT", " - Number of samples" ]
);
my $file = $ARGV[0] or die "Syntax: $0 <file>\n";
@@ -16,17 +16,24 @@ while ($line = <IES>) {
}
close IES;
while (<STDIN>) {
- /^(\w+),\s*(\w+),\s*(.+)$/ and do {
- my $rfield = $1;
- my $nfield = $2;
- my $descr = $3;
- foreach my $f (@fields) {
+ /^(%?)(\w+),\s*(\w+),\s*(.+)$/ and do {
+ my $counter = $1;
+ my $rfield = $2;
+ my $nfield = $3;
+ my $descr = $4;
+ my @f;
+ if ($counter) {
+ @f = [ "", "UINT", "" ];
+ } else {
+ @f = @fields;
+ }
+ foreach my $f (@f) {
my $nr = ++$last_ie;
my $n = $f->[0];
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";
+ print "$nr, IPFIX_FT_WPROBE_$rfield$N, 4, IPFIX_CODING_$ftype, \"$nfield$n\", \"$descr$fdesc\"\n";
}
};
}