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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/logstash/inputs/azure_blob_storage.rb +1 -1
- data/logstash-input-azure_blob_storage.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d9a45fa4fa24b7e14ffd518665c9310bbf4ff6ba82fd063fde124a45d20f475
|
4
|
+
data.tar.gz: 56b119316882fefc3d208418aac0b1b712d94649099297f52bef1f04eb44f7fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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}
|
423
|
+
@logger.error("NSG Flowlog problem for #{name} and error message #{e.message}")
|
424
424
|
end
|
425
425
|
return count
|
426
426
|
end
|