logstash-output-vespa_feed 0.5.1 → 0.5.2

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
  SHA256:
3
- metadata.gz: ebee2d37b94e57eb0ce3d7c3887fe0966baf6ba239bbd726fa89042e22eee368
4
- data.tar.gz: b10386736e36b2310a083f961d4fceefc6037c2290712a9266c1253c6dd1d806
3
+ metadata.gz: 3466c338ea2f0c1d0cd7bc2786c60f04885baa6757ff76ee7ea77430e1687071
4
+ data.tar.gz: 241a288d4738e6829c1488ea67f0026c74e972683cd11e3aaa53f4b13fa2d2e1
5
5
  SHA512:
6
- metadata.gz: 85f2103959d1d000d88e1a11dca26076f4a17e3a8e2d43ff2c178b2c0dd973a83f6738fd7f6cc11a760d45d274994f41b9d9b1acc695bd99f435eda22ca79c61
7
- data.tar.gz: fa26fe0a245c96a54e40036c349be73f5ddc62e3d087dbd48129baf4b36667c0c0bfcb3471b6a4c4dc4887ea9b3d4f21a74687c13f7583a31b5ebdfae3981df3
6
+ metadata.gz: 7c34fe0cf3b538075576afbe54afd3588e671e52ccaec43e6e5c0ff92f064e581f437effb99ce58a94326f2b79529e87ced3697080931f0d0a96b40e4b3ce0ed
7
+ data.tar.gz: 964e417fe7bf99d6d0262d8114873477ba836ad20cdb09ba6e8fd2f5443f950c7879785aaf5e0321842d3b27d30f37e402a4dcacaa19fa2804b47a8696bb2a15
data/README.md CHANGED
@@ -14,8 +14,10 @@ If you're developing the plugin, you'll want to do something like:
14
14
  ```
15
15
  # build the gem
16
16
  ./gradlew gem
17
+ # run tests
18
+ ./gradlew test
17
19
  # install it as a Logstash plugin
18
- /opt/logstash/bin/logstash-plugin install /path/to/logstash-output-vespa/logstash-output-vespa_feed-0.4.0.gem
20
+ /opt/logstash/bin/logstash-plugin install /path/to/logstash-output-vespa/logstash-output-vespa_feed-0.5.2.gem
19
21
  # profit
20
22
  /opt/logstash/bin/logstash
21
23
  ```
@@ -61,7 +63,9 @@ filter {
61
63
  columns => ["id", "description", ...]
62
64
  }
63
65
 
64
- # remove fields that we don't need. Here you can do a lot more processing
66
+ # remove fields we don't need
67
+ # NOTE: the fields below are added by Logstash by default. You probably *need* this block
68
+ # otherwise Vespa will reject documents complaining that e.g. @timestamp is an unknown field
65
69
  mutate {
66
70
  remove_field => ["@timestamp", "@version", "event", "host", "log", "message"]
67
71
  }
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.1
1
+ 0.5.2
@@ -2,4 +2,4 @@
2
2
  # encoding: utf-8
3
3
 
4
4
  require 'jar_dependencies'
5
- require_jar('org.logstashplugins', 'logstash-output-vespa_feed', '0.5.1')
5
+ require_jar('org.logstashplugins', 'logstash-output-vespa_feed', '0.5.2')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-vespa_feed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Radu Gheorghe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-19 00:00:00.000000000 Z
11
+ date: 2024-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ files:
76
76
  - lib/logstash-output-vespa_feed_jars.rb
77
77
  - lib/logstash/outputs/vespa_feed.rb
78
78
  - logstash-output-vespa_feed.gemspec
79
- - vendor/jar-dependencies/org/logstashplugins/logstash-output-vespa_feed/0.5.1/logstash-output-vespa_feed-0.5.1.jar
79
+ - vendor/jar-dependencies/org/logstashplugins/logstash-output-vespa_feed/0.5.2/logstash-output-vespa_feed-0.5.2.jar
80
80
  homepage: https://vespa.ai
81
81
  licenses:
82
82
  - Apache-2.0