fluent-plugin-newrelic 0.2.1 → 0.2.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: 32a37bb299de92e397ad2bd2f04567e0a547352154a1d33892e0c11444fb397c
4
- data.tar.gz: c61af95415950683b10b054ab3c38e1cae3f415edde430f3ef1f0097f5e6ae41
3
+ metadata.gz: 2979d005ee9e504c685bebb8cc01489d3e44d2c2e795472ee5445cf789baf269
4
+ data.tar.gz: 7f279b591fd77411850270abb71d3db2747e9cdf59e55002d8ada506d914185c
5
5
  SHA512:
6
- metadata.gz: f3721354d1aa42da45d08d6f50208b2a44957fff774ebfa45a3f121f5bdb60207a146812a851a38fbe124aac47c7258ebfadf9c2ee23ab65be0078c190ac48b6
7
- data.tar.gz: cf229d87095cca2bd4aec5050954ecab906f135b1f210a7bf68b2482d176d5a2af4b2df1e3a6ecb2115cb4eaba6843ed7f5884398f21267be322cf4806e57743
6
+ metadata.gz: 5a0eaf3be6cd715efc8d44e37648f87c9ae47ebdc0fecee614dfccf6255550149755aae548c452d8f273192484852cd6240c69639c90604fc4915df87827e335
7
+ data.tar.gz: c235c47d26c16bbaaf9e5d9e5637fe7452a40acc63dee83500d180f80ecfcb72b4735cb6f3cd8d7f8e729bfdc77561b7045c671f33184ed77b23c81f996f337c
data/DEVELOPER.md CHANGED
@@ -20,14 +20,8 @@
20
20
  * Cause a change that you've configured Fluentd to pick up (for instance, append to a file you're having it monitor)
21
21
  * Look in `https://staging-one.newrelic.com/launcher/logger.log-launcher` for your log message
22
22
 
23
- # Deploying to Gemfury
24
-
25
- After merging to master you must also push the code to Gemfury, which is where customers will get our gem from.
26
- * Get the version you just merged to master in Github
27
- * `git checkout master`
28
- * `git pull`
29
- * Push the new master to Gemfury
30
- * Add Gemfury as remote (only needs to be done once): `git remote add fury https://<your-gemfury-username>@git.fury.io/nrsf/newrelic-fluentd-output.git`
31
- * Push the new commits to Gemfury: `git push fury master`
32
- * For the password, use the "Personal full access token" seen here https://manage.fury.io/manage/newrelic/tokens/shared
33
- * Make sure you see your new code show up here: `https://manage.fury.io/dashboard/nrsf`
23
+ # Push changes to RubyGems
24
+ After updating the source code and gem version in `version.rb`, push the changes to RubyGems. Note, you must be a gem owner to publish changes on [RubyGems.org](https://rubygems.org/profiles/NR-LOGGING)
25
+
26
+ * Build the gem: `gem build newrelic-fluentd-output.gemspec`
27
+ * Publish the gem: `gem push fluent-plugin-newrelic-<VERSION>.gem` with the updated version (ex: `gem push fluent-plugin-newrelic-0.2.11.gem`)
data/README.md CHANGED
@@ -7,10 +7,15 @@ A [Fluentd](https://fluentd.org/) output plugin that sends logs to New Relic
7
7
  Fluentd >= v1.0
8
8
 
9
9
  ## Installation
10
+ Add the plugin to your fluentd agent:
10
11
 
11
- ```
12
- $ td-agent-gem install -s https://1keEQc-cII8DjYRJVdpUXAw6DUPV6JmjpE@repo.fury.io/nrsf fluent-plugin-newrelic
13
- ```
12
+ `fluent-gem install fluent-plugin-newrelic`
13
+
14
+ If you are using td-agent:
15
+
16
+ `td-agent-gem install fluent-plugin-newrelic`
17
+
18
+ For more info, review [Fluentd's official documentation](https://docs.fluentd.org/deployment/plugin-management).
14
19
 
15
20
  ## Configuration
16
21
 
Binary file
@@ -1,3 +1,3 @@
1
1
  module NewrelicFluentdOutput
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
@@ -6,11 +6,11 @@ require 'newrelic-fluentd-output/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "fluent-plugin-newrelic"
8
8
  spec.version = NewrelicFluentdOutput::VERSION
9
- spec.authors = ["Logging Team"]
9
+ spec.authors = ["New Relic Logging Team"]
10
10
  spec.email = ["logging-team@newrelic.com"]
11
11
 
12
12
  if spec.respond_to?(:metadata)
13
- spec.metadata['allowed_push_host'] = "https://rubygems.org/"
13
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
14
14
  end
15
15
 
16
16
  spec.summary = "Sends FluentD events to New Relic"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-newrelic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
- - Logging Team
7
+ - New Relic Logging Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-06-18 00:00:00.000000000 Z
11
+ date: 2019-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd
@@ -96,6 +96,7 @@ files:
96
96
  - LICENSE
97
97
  - README.md
98
98
  - Rakefile
99
+ - fluent-plugin-newrelic-0.2.1.gem
99
100
  - grandcentral.yml
100
101
  - lib/fluent/plugin/out_newrelic.rb
101
102
  - lib/newrelic-fluentd-output/version.rb
@@ -103,7 +104,7 @@ files:
103
104
  homepage: https://source.datanerd.us/logging/logstash-output-newrelic
104
105
  licenses: []
105
106
  metadata:
106
- allowed_push_host: https://rubygems.org/
107
+ allowed_push_host: https://rubygems.org
107
108
  post_install_message:
108
109
  rdoc_options: []
109
110
  require_paths: