logstash-output-edge_loki 1.0.4 → 1.0.5
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/outputs/edge_loki.rb +1 -1
- data/logstash-output-edge_loki.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: 566d8ecb5467df002d8472b81050203bf545b61bab5d62eee95e97360515d99d
|
4
|
+
data.tar.gz: 404c178ce114082bf0c345f238cad7ea956d78f210d8928747aee4c9a4f1140f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 189f31a68e1791ad9dce43de4cb9a5106ae95a8b20bfd63ae9dbf867f241eea7c78d6511eee90684850aa06ca9dc41fbdb75293e77f6ea48093f7e40734a4693
|
7
|
+
data.tar.gz: 4c041143bb13e7c0466311f01b01f98ef796e80900091d9170857928aa0298f305b3cdfdeae14095b35663255f563c456f17799943ce1837482765e1cb806334
|
@@ -106,7 +106,6 @@ class LogStash::Outputs::EDGE_Loki < LogStash::Outputs::Base
|
|
106
106
|
@mutex.synchronize do
|
107
107
|
if !add_entry_to_batch(e)
|
108
108
|
@logger.debug("Max batch_size is reached. Sending batch to loki")
|
109
|
-
createClient()
|
110
109
|
send(@batch)
|
111
110
|
@batch = Batch.new(e)
|
112
111
|
end
|
@@ -225,6 +224,7 @@ class LogStash::Outputs::EDGE_Loki < LogStash::Outputs::Base
|
|
225
224
|
|
226
225
|
def send(batch)
|
227
226
|
@logger.info("send: started method")
|
227
|
+
createClient()
|
228
228
|
payload = batch.to_json
|
229
229
|
res = loki_http_request(payload)
|
230
230
|
if res.is_a?(Net::HTTPSuccess)
|