newrelic_redshift_plugin 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bf27558d8f076931d66c62c5f0700adb7dd4cdd1
4
- data.tar.gz: 592a4f6eda81c9510cc1a8926b6a3add252216b8
3
+ metadata.gz: 85ba0bc34dea93f6a686fa396b1736210a11ae9a
4
+ data.tar.gz: 0645199bc901c5161a03ce945e6d834c1084885f
5
5
  SHA512:
6
- metadata.gz: 66a96cbe5eb0ddef37f903929d56cff6dbd31cdda97531da8d444de75dc86fd662b1dfe6959ce8eb499d06aa4692a3f6cb99b78f482d6c6bdf88115201d073c5
7
- data.tar.gz: f17f3109d611350bb5a66388099586a8cbd5fbe5ecfab6cdeed4c4fbeffccc607d753cfb1c79be69bd26c11fc5f62c3413acb3295d417ee98f3d2ef6a1e64135
6
+ metadata.gz: fa716fe3deba379b57f27d57be44238ca1808efe72c29f0ac294a631c733a4a66f422af93357f3462c00d2bd53b184305fa216dad3218942d38c02cc5552eab9
7
+ data.tar.gz: 3c1793d002df75d12c4f01898b3a30d8ab6d37ea25180f729fb4168665dbdc8a8f078ed2e67a5891b13350a8554789dd849449eac08c7b21d249df2b68a67550
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- newrelic_redshift_plugin (0.1.0)
4
+ newrelic_redshift_plugin (1.0.0)
5
5
  newrelic_plugin (~> 1.3, >= 1.3.1)
6
6
  pg (~> 0.17, >= 0.17.0)
7
7
 
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  NewRelic Redshift Plugin
2
2
  ========================
3
3
 
4
+
4
5
  A NewRelic Redshift Plugin
5
6
 
6
7
  The New Relic Redshift Plugin enables integrated monitoring of your Redshift database in a custom NewRelic dashboard. Currently the following metrics are recorded:
@@ -19,13 +20,17 @@ The New Relic Redshift Plugin enables integrated monitoring of your Redshift dat
19
20
 
20
21
  More metrics coming!
21
22
 
23
+ ----
22
24
  ## Requirements
23
25
 
26
+
27
+
24
28
  ### Proxy host
25
29
 
26
30
  You need a host to install the plugin on that is able to poll the desired Redshift database. That
27
31
  host also needs Ruby (tested with 2.2.0), and support for rubygems.
28
32
 
33
+
29
34
  ## Installation and Running
30
35
 
31
36
  1.
@@ -50,13 +55,16 @@ host also needs Ruby (tested with 2.2.0), and support for rubygems.
50
55
 
51
56
  6. Log into your New Relic account [here](http://newrelic.com) and click on Redshift on the left hand nav bar to start seeing your Redshift metrics.
52
57
 
58
+
53
59
  ##Source Code
54
- This plygin can be found at [here](https://github.com/ChiragKParmar/newrelic_redshift_plugin/)
60
+ This plugin can be found at [here](https://github.com/ChiragKParmar/newrelic_redshift_plugin/)
61
+
55
62
 
56
63
  ## Support
57
64
 
58
65
  Please use Github issue for support. [git issue tracking](https://github.com/ChiragKParmar/newrelic_redshift_plugin/issues)
59
66
 
67
+
60
68
  ### Frequently Asked Questions
61
69
 
62
70
  **Q: What is the default polling time ?**
@@ -65,11 +73,16 @@ Please use Github issue for support. [git issue tracking](https://github.com/Chi
65
73
 
66
74
  **Q: How can I change the default polling time ?**
67
75
 
68
- **A:** You can change the default value by editing [the newrelic_plugin.yml](https://github.com/ChiragKParmar/newrelic_redshift_plugin/config/newrelic_plugin.yml#L12) and
76
+ **A:** You can change the default value by editing [the newrelic_plugin.yml](https://github.com/ChiragKParmar/newrelic_redshift_plugin/blob/master/config/newrelic_plugin_template.yml#L12) and
69
77
  Please read [Newrelic's note on time periods for metrics](https://docs.newrelic.com/docs/plugins/plugin-developer-resources/developer-reference/metric-data-plugin-api#metric_duration)
70
78
 
79
+
71
80
  ## Contributing
72
81
 
73
82
  Pull requests welcome!
74
83
 
84
+
85
+ ----
75
86
  ## More Metrics Coming Soon!!!
87
+
88
+
@@ -1,3 +1,3 @@
1
1
  module NewRelic::RedshiftPlugin
2
- VERSION = '0.1.0'
3
- end
2
+ VERSION = '1.0.0'
3
+ end
@@ -5,4 +5,4 @@ require 'newrelic_plugin'
5
5
  require 'pg'
6
6
 
7
7
  require 'newrelic_redshift_plugin/version'
8
- require 'newrelic_redshift_plugin/agent'
8
+ require 'newrelic_redshift_plugin/agent'
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'newrelic_redshift_plugin'
16
- s.version = '0.1.0'
16
+ s.version = '1.0.0'
17
17
  s.date = '2015-10-14'
18
18
  s.rubyforge_project = 'newrelic_redshift_plugin'
19
19
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newrelic_redshift_plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chirag K. Parmar