README.md in logstash-output-newrelic-1.0.0 vs README.md in logstash-output-newrelic-1.0.1
- old
+ new
@@ -2,12 +2,20 @@
This is a plugin for [Logstash](https://github.com/elastic/logstash) that outputs logs to New Relic.
## Installation
Install the New Relic Logstash plugin using the following command:</br>
-`logstash-plugin install logstash-output-newrelic-logging`
+`logstash-plugin install logstash-output-newrelic`
+(Optional) If you are interested in installing the gem directly, run the following command. If you want a specific version, specify it by appending the `-v <VERSION>` option.<br/>
+`gem install logstash-output-newrelic`
+
+```
+Old version: 0.9.1 (unmaintained)
+Current: 1.0.0
+```
+
## Configuration
Add the following block to your logstash.conf (with your specific API Insert key), then restart Logstash.
There are other optional configuration properties, see below.
@@ -15,10 +23,10 @@
`https://insights.newrelic.com/accounts/<ACCOUNT_ID>/manage/api_keys`
Example:
```rb
output {
- newrelic_internal {
+ newrelic {
api_key => "<API_INSERT_KEY>"
}
}
```