logstash-input-azure_blob_storage 0.12.1 → 0.12.2

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
  SHA256:
3
- metadata.gz: 202f43b2d085a872fef61594e05dbc3eb19188863a20b5f4ffece2ef66608d15
4
- data.tar.gz: 3b13f7a610c7b541ee7265340103011998d5c1799dfc7a1057add7307f1550dc
3
+ metadata.gz: 7d9a45fa4fa24b7e14ffd518665c9310bbf4ff6ba82fd063fde124a45d20f475
4
+ data.tar.gz: 56b119316882fefc3d208418aac0b1b712d94649099297f52bef1f04eb44f7fb
5
5
  SHA512:
6
- metadata.gz: 0af0f2e0f0f955849840190ebfd60185ae5b0465e4d509f40b99bf075da44ed50e0120c8d781d2455b0b16969cc4c75f8a3ff9e71431e73e0bfaa03dc284b708
7
- data.tar.gz: 3e7907fe4700bfe3640b5783d63b17d0f153061b0a57bb61964ca08f83332e616e158f754904807a1b804be0ba7a64be4c6d92aa7ee9393e42ca33a8ac9e54a4
6
+ metadata.gz: 17f9c1fc032e18a764a6985a4e6d5a96eacfb4732861a9f6c1a6f41be01ff9c9036e0ce5d15348da12a3d236855111744e6bd867e64162a7417e4f8bdd862392
7
+ data.tar.gz: 6e39fc13efa7f7aea54e6aad9c4d5e1c3c00e1c9a5c56f39b28622496b598aecada794c337f9c348c911527b1e17229d1923829a707acf4bfa282da94441dd46
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ #$ 0.12.2
2
+ - Fixed the exception handling, not trying to print how many JSON fields there are while catching the exception
3
+
4
+ ## 0.12.1
5
+ - Catch NSGFLOW logs when the JSON parsing somehow failed
6
+
1
7
  ## 0.12.0
2
8
  - version 2 of azure-storage
3
9
  - saving current files registry, not keeping historical files
@@ -420,7 +420,7 @@ def nsgflowlog(queue, json, name)
420
420
  end
421
421
  end
422
422
  rescue Exception => e
423
- @logger.error("NSG Flowlog problem for #{name}, with #{json["records"].size} records and error message #{e.message}")
423
+ @logger.error("NSG Flowlog problem for #{name} and error message #{e.message}")
424
424
  end
425
425
  return count
426
426
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-azure_blob_storage'
3
- s.version = '0.12.1'
3
+ s.version = '0.12.2'
4
4
  s.licenses = ['Apache-2.0']
5
5
  s.summary = 'This logstash plugin reads and parses data from Azure Storage Blobs.'
6
6
  s.description = <<-EOF
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-azure_blob_storage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1
4
+ version: 0.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Geertsma