logstash-codec-sflow 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/logstash/codecs/sflow/flow_record.rb +2 -2
- data/logstash-codec-sflow.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddc03024121f42f455dd1275cfe5cc6413f5b203
|
4
|
+
data.tar.gz: 84f0a827141d0fe80c01e1f8b373a649229be489
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49681626b90b77e12f4091c96c1bd7cedbee381c15be3a13cb56a20796c1df6b061de9e3c77799087535d0959eb1789b758670e13e0997f5dd711154c9d8760f
|
7
|
+
data.tar.gz: dcdbcc07970c0c8c15960676a3925e6bebd070a2f0b6c084e4011301343bf9de0b8ed071f72e288a9e90a99d5dd4de32946e365470030cf5de85611489304961
|
@@ -26,7 +26,7 @@ class EthernetFrameData < BinData::Record
|
|
26
26
|
skip :length => 2
|
27
27
|
sflow_mac_address :dst_mac
|
28
28
|
skip :length => 2
|
29
|
-
uint32 :
|
29
|
+
uint32 :eth_type
|
30
30
|
end
|
31
31
|
|
32
32
|
# noinspection RubyResolve
|
@@ -39,7 +39,7 @@ class IP4Data < BinData::Record
|
|
39
39
|
uint32 :src_port
|
40
40
|
uint32 :dst_port
|
41
41
|
uint32 :tcp_flags
|
42
|
-
uint32 :
|
42
|
+
uint32 :ip_type
|
43
43
|
end
|
44
44
|
|
45
45
|
# noinspection RubyResolve
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-codec-sflow'
|
4
|
-
s.version = '1.1.
|
4
|
+
s.version = '1.1.1'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = 'The sflow codec is for decoding SFlow v5 flows.'
|
7
7
|
s.description = 'This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program'
|