logstash-codec-avro 0.1.4 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6109fac1ab995b8591a7059b16def1c32c4d902f
4
- data.tar.gz: 4e10765814e061bb9ea159a8d04954b9037c4d87
3
+ metadata.gz: d9c1b3c14872acb5cb2bdd2b634a332325324f68
4
+ data.tar.gz: 3c8ca866d27207ba5e63c5e5104318361730bbae
5
5
  SHA512:
6
- metadata.gz: ce7db13a29b1668e9ab69b4f680be35f43e7c852a4ea043186be9eaa3d40b93790f3abb87c45061ca51520b4473c92a32f84c154504adff606851301ee52902a
7
- data.tar.gz: c5bb00a3f7f751bdb246d51e4bb35bf02f72011713acd433f6200dfb2581884ac092ad47dee0d1e30f19b9b3af255c8e44dd5708883ad0c17dabe862acdcf39e
6
+ metadata.gz: 47ec492a293d19165fdf9a4c501f6082980d0950f7678014a73749a3cb62742a0a076af896f49fd1441644adbc287ad3ca506945c544318430f7e1575559630e
7
+ data.tar.gz: e9372e35cd1650e95ffd3b4103ba0e2ca56ff1ee03cb056ab08acdab4ecdaa11102ea90e5035abd3fccf8b40ce4fca9a1a674438877ccaa83b00ca3161f1d7c1
data/CHANGELOG.md ADDED
File without changes
data/NOTICE.TXT ADDED
@@ -0,0 +1,5 @@
1
+ Elasticsearch
2
+ Copyright 2012-2015 Elasticsearch
3
+
4
+ This product includes software developed by The Apache Software
5
+ Foundation (http://www.apache.org/).
data/README.md CHANGED
@@ -13,7 +13,7 @@ Logstash provides infrastructure to automatically generate documentation for thi
13
13
 
14
14
  ## Need Help?
15
15
 
16
- Need help? Try #logstash on freenode IRC or the logstash-users@googlegroups.com mailing list.
16
+ Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.
17
17
 
18
18
  ## Developing
19
19
 
@@ -6,6 +6,46 @@ require "logstash/event"
6
6
  require "logstash/timestamp"
7
7
  require "logstash/util"
8
8
 
9
+ # Read serialized Avro records as Logstash events
10
+ #
11
+ # This plugin is used to serialize Logstash events as
12
+ # Avro datums, as well as deserializing Avro datums into
13
+ # Logstash events.
14
+ #
15
+ # === Encoding
16
+ #
17
+ # This codec is for serializing individual Logstash events
18
+ # as Avro datums that are Avro binary blobs. It does not encode
19
+ # Logstash events into an Avro file.
20
+ #
21
+ #
22
+ # === Decoding
23
+ #
24
+ # This codec is for deserializing individual Avro records. It is not for reading
25
+ # Avro files. Avro files have a unique format that must be handled upon input.
26
+ #
27
+ #
28
+ # === Usage
29
+ # Example usage with Kafka input.
30
+ #
31
+ # [source,ruby]
32
+ # ----------------------------------
33
+ # input {
34
+ # kafka {
35
+ # codec => {
36
+ # avro => {
37
+ # schema_uri => "/tmp/schema.avsc"
38
+ # }
39
+ # }
40
+ # }
41
+ # }
42
+ # filter {
43
+ # ...
44
+ # }
45
+ # output {
46
+ # ...
47
+ # }
48
+ # ----------------------------------
9
49
  class LogStash::Codecs::Avro < LogStash::Codecs::Base
10
50
  config_name "avro"
11
51
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-codec-avro'
4
- s.version = '0.1.4'
4
+ s.version = '0.1.5'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Encode and decode avro formatted data"
7
7
  s.description = "Encode and decode avro formatted data"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-codec-avro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-30 00:00:00.000000000 Z
11
+ date: 2015-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core
@@ -65,10 +65,12 @@ extensions: []
65
65
  extra_rdoc_files: []
66
66
  files:
67
67
  - .gitignore
68
+ - CHANGELOG.md
68
69
  - CONTRIBUTORS
69
70
  - DEVELOPER.md
70
71
  - Gemfile
71
72
  - LICENSE
73
+ - NOTICE.TXT
72
74
  - README.md
73
75
  - Rakefile
74
76
  - lib/logstash/codecs/avro.rb