logstash-codec-netflow 3.11.2 → 3.11.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 77f122827b88b2cd3de0a5d33e68bebf2543b123
4
- data.tar.gz: dd53ee247135f3c112105cdb44287bfd4cdff02b
3
+ metadata.gz: 320304153a7d6ce91b9102a5bac6889fa1a86783
4
+ data.tar.gz: 3d315078467947c08ddb21fd5788ae39d56d400c
5
5
  SHA512:
6
- metadata.gz: 58fb4cd257c95d1dc594908982dc680e85827109c50d30b82a20e898bc21676c0e128d66cd9bd541b65b842eba2080a2110cf41ea042b75e28292c56641e8c49
7
- data.tar.gz: 010589f423fc57e4c3600c47ffd1a07fcd3a80382b7b037c4756ef27a24254ccc5fc506a3f8744263455fba6ee7e71fa6af28539fe26bf49fde99e277a41939f
6
+ metadata.gz: 9756b70f353ccd051c7a8b3bae7492ff92d71bbc726d27ce382ee84dad8723c0ebf0ac51e285b6c27e13d1d0a1c2e355f0c5eeaf304314c80280833b9ded4a01
7
+ data.tar.gz: ec14123d04ec0a452338a1a408e1c3cc10f6ba8389df57655df367ac4067079f6bfbf5989dd31f20068087ca31a0adf0c8f94182f11af935d659ec505c0a6bef
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 3.11.3
2
+
3
+ - Renamed some unknown VMware VDS fields
4
+
1
5
  ## 3.11.2
2
6
 
3
7
  - Further improved decoding performance of ASA ACL ids
data/CONTRIBUTORS CHANGED
@@ -12,6 +12,7 @@ Contributors:
12
12
  * Evgeniy Sudyr (ejectck)
13
13
  * G.J. Moed (gjmoed)
14
14
  * Gmoz Shih
15
+ * James Park-Watt (jimmypw)
15
16
  * Jason Keller (jasonkeller)
16
17
  * Jeremy Foran (jeremyforan)
17
18
  * Jordan Sissel (jordansissel)
@@ -2472,13 +2472,16 @@
2472
2472
  - :vmwareUnknown887
2473
2473
  888:
2474
2474
  - :uint16
2475
- - :vmwareUnknown888
2475
+ # source: https://github.com/logstash-plugins/logstash-codec-netflow/issues/28#issuecomment-371811848
2476
+ - :vmwareEgressInterfaceTypeID
2476
2477
  889:
2477
2478
  - :uint8
2478
- - :vmwareUnknown889
2479
+ # source: https://github.com/logstash-plugins/logstash-codec-netflow/issues/28#issuecomment-371811848
2480
+ - :vmwareObservationDomainID
2479
2481
  890:
2480
2482
  - :uint16
2481
- - :vmwareUnknown890
2483
+ # source: https://github.com/logstash-plugins/logstash-codec-netflow/issues/28#issuecomment-371811848
2484
+ - :vmwareIngressInterfaceTypeID
2482
2485
  29305:
2483
2486
  1:
2484
2487
  - :uint64
@@ -3608,6 +3611,23 @@
3608
3611
  433:
3609
3612
  - :uint64
3610
3613
  - :reverseIgnoredLayer2FrameTotalCount
3614
+ 21373:
3615
+ 4:
3616
+ - :uint32
3617
+ - :mark
3618
+ 6:
3619
+ - :uint32
3620
+ - :conntrack_id
3621
+ 9789:
3622
+ 1:
3623
+ - :uint16
3624
+ - :afcProtocol
3625
+ 2:
3626
+ - :string
3627
+ - :afcProtocolName
3628
+ 4:
3629
+ - :uint8
3630
+ - :flowDirection
3611
3631
  41916:
3612
3632
  4321:
3613
3633
  - :uint64
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-codec-netflow'
4
- s.version = '3.11.2'
4
+ s.version = '3.11.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Reads Netflow v5, Netflow v9 and IPFIX data"
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/logstash-plugin install gemname. This gem is not a stand-alone program"
@@ -1577,7 +1577,7 @@ describe LogStash::Codecs::Netflow do
1577
1577
  "destinationIPv4Address": "172.18.65.211",
1578
1578
  "destinationTransportPort": 5985,
1579
1579
  "tcpControlBits": 2,
1580
- "vmwareUnknown890": 1,
1580
+ "vmwareIngressInterfaceTypeID": 1,
1581
1581
  "sourceIPv4Address": "172.18.65.21",
1582
1582
  "ingressInterface": 3,
1583
1583
  "ipClassOfService": 0,
@@ -1592,9 +1592,9 @@ describe LogStash::Codecs::Netflow do
1592
1592
  "sourceTransportPort": 61209,
1593
1593
  "flowEndMilliseconds": "2016-12-22T12:17:37.000Z",
1594
1594
  "maximumTTL": 128,
1595
- "vmwareUnknown888": 2,
1595
+ "vmwareEgressInterfaceTypeID": 2,
1596
1596
  "flowStartMilliseconds": "2016-12-22T12:17:37.000Z",
1597
- "vmwareUnknown889": 0
1597
+ "vmwareObservationDomainID": 0
1598
1598
  },
1599
1599
  "@timestamp": "2016-12-22T12:17:52.000Z",
1600
1600
  "@version": "1"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-codec-netflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.11.2
4
+ version: 3.11.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-01 00:00:00.000000000 Z
11
+ date: 2018-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement