logstash-filter-google_appengine 0.105.0 → 0.110.0
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/.gitignore +86 -0
- data/lib/logstash/filters/google_appengine.rb +2 -1
- data/logstash-filter-google_appengine.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35638dbc2dd594d6bdc579db1ba3571b3692a1cb
|
|
4
|
+
data.tar.gz: 8a5e2335088630cdccb798259d212628d6a28c50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b71a93a149419839fd83d8b5c752833e0de0a1923e5c78a7d78fc91d0ee37871bfec975b327aeb7f05845b8736820de3108ff98f5b317252d314798c1d0aa83d
|
|
7
|
+
data.tar.gz: 536063ffafdf31dab655261f6edd8aa86239310846892367fd9928251a88d2d06ef01dd7e4c3fc42a1da3cb5b7453b3234cb08dd44ca1217042172e4fca104c2
|
data/.gitignore
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# Created by .ignore support plugin (hsz.mobi)
|
|
2
|
+
### Ruby template
|
|
3
|
+
*.gem
|
|
4
|
+
*.rbc
|
|
5
|
+
/.config
|
|
6
|
+
/coverage/
|
|
7
|
+
/InstalledFiles
|
|
8
|
+
/pkg/
|
|
9
|
+
/spec/reports/
|
|
10
|
+
/spec/examples.txt
|
|
11
|
+
/test/tmp/
|
|
12
|
+
/test/version_tmp/
|
|
13
|
+
/tmp/
|
|
14
|
+
|
|
15
|
+
## Specific to RubyMotion:
|
|
16
|
+
.dat*
|
|
17
|
+
.repl_history
|
|
18
|
+
build/
|
|
19
|
+
|
|
20
|
+
## Documentation cache and generated files:
|
|
21
|
+
/.yardoc/
|
|
22
|
+
/_yardoc/
|
|
23
|
+
/doc/
|
|
24
|
+
/rdoc/
|
|
25
|
+
|
|
26
|
+
## Environment normalisation:
|
|
27
|
+
/.bundle/
|
|
28
|
+
/vendor/bundle
|
|
29
|
+
/lib/bundler/man/
|
|
30
|
+
|
|
31
|
+
# for a library or gem, you might want to ignore these files since the code is
|
|
32
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
33
|
+
# Gemfile.lock
|
|
34
|
+
# .ruby-version
|
|
35
|
+
# .ruby-gemset
|
|
36
|
+
|
|
37
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
38
|
+
.rvmrc
|
|
39
|
+
### JetBrains template
|
|
40
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
|
|
41
|
+
|
|
42
|
+
*.iml
|
|
43
|
+
|
|
44
|
+
## Directory-based project format:
|
|
45
|
+
.idea/
|
|
46
|
+
# if you remove the above rule, at least ignore the following:
|
|
47
|
+
|
|
48
|
+
# User-specific stuff:
|
|
49
|
+
# .idea/workspace.xml
|
|
50
|
+
# .idea/tasks.xml
|
|
51
|
+
# .idea/dictionaries
|
|
52
|
+
|
|
53
|
+
# Sensitive or high-churn files:
|
|
54
|
+
# .idea/dataSources.ids
|
|
55
|
+
# .idea/dataSources.xml
|
|
56
|
+
# .idea/sqlDataSources.xml
|
|
57
|
+
# .idea/dynamic.xml
|
|
58
|
+
# .idea/uiDesigner.xml
|
|
59
|
+
|
|
60
|
+
# Gradle:
|
|
61
|
+
# .idea/gradle.xml
|
|
62
|
+
# .idea/libraries
|
|
63
|
+
|
|
64
|
+
# Mongo Explorer plugin:
|
|
65
|
+
# .idea/mongoSettings.xml
|
|
66
|
+
|
|
67
|
+
## File-based project format:
|
|
68
|
+
*.ipr
|
|
69
|
+
*.iws
|
|
70
|
+
|
|
71
|
+
## Plugin-specific files:
|
|
72
|
+
|
|
73
|
+
# IntelliJ
|
|
74
|
+
/out/
|
|
75
|
+
|
|
76
|
+
# mpeltonen/sbt-idea plugin
|
|
77
|
+
.idea_modules/
|
|
78
|
+
|
|
79
|
+
# JIRA plugin
|
|
80
|
+
atlassian-ide-plugin.xml
|
|
81
|
+
|
|
82
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
83
|
+
com_crashlytics_export_strings.xml
|
|
84
|
+
crashlytics.properties
|
|
85
|
+
crashlytics-build.properties
|
|
86
|
+
|
|
@@ -14,9 +14,10 @@ class LogStash::Filters::GoogleAppengine < LogStash::Filters::Base
|
|
|
14
14
|
|
|
15
15
|
def filter(event)
|
|
16
16
|
return unless filter?(event)
|
|
17
|
+
return unless event['protoPayload']
|
|
17
18
|
payload = event['protoPayload']
|
|
18
19
|
payload.delete '@type'
|
|
19
|
-
payload['type'] = '
|
|
20
|
+
payload['type'] = event['type']
|
|
20
21
|
lines = payload.delete 'line'
|
|
21
22
|
if lines
|
|
22
23
|
lines.each_with_index { |line, i|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-filter-google_appengine'
|
|
4
|
-
s.version = '0.
|
|
4
|
+
s.version = '0.110.0'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "This filter may be used to decode via inputs appengine logs"
|
|
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/plugin install gemname. This gem is not a stand-alone program"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-filter-google_appengine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.110.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Small Improvements
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-10-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: logstash-core
|
|
@@ -50,6 +50,7 @@ executables: []
|
|
|
50
50
|
extensions: []
|
|
51
51
|
extra_rdoc_files: []
|
|
52
52
|
files:
|
|
53
|
+
- ".gitignore"
|
|
53
54
|
- Gemfile
|
|
54
55
|
- LICENSE
|
|
55
56
|
- README.md
|