fluent-plugin-geoblipper 0.0.4 → 0.0.4.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
Gem::Specification.new do |gem|
|
3
3
|
gem.name = "fluent-plugin-geoblipper"
|
4
|
-
gem.version = "0.0.4"
|
4
|
+
gem.version = "0.0.4.1"
|
5
5
|
gem.authors = ["Sean Dick", "Change.org"]
|
6
6
|
gem.email = ["sean@change.org"]
|
7
7
|
gem.homepage = "https://github.com/seanmdick/fluent-plugin-geoblipper"
|
@@ -27,7 +27,7 @@ class Fluent::GeoBlipperOutput < Fluent::BufferedOutput
|
|
27
27
|
if loc
|
28
28
|
{latitude: loc.latitude, longitude: loc.longitude}.to_json + "\n"
|
29
29
|
else
|
30
|
-
Fluent::Engine.emit('debug.livemap', {message: "
|
30
|
+
Fluent::Engine.emit('debug.livemap', Time.now, {message: "geodata not found for #{@ip_key}"})
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|