This repository has been archived by the owner on Apr 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
metadata.rb
264 lines (230 loc) · 10.4 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
name 'newrelic_plugins'
maintainer 'New Relic, Inc.'
maintainer_email '[email protected]'
license 'MIT'
description 'Installs New Relic Plugins.'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.1.0'
recipe 'newrelic_plugins::aws_cloudwatch', 'Installs New Relic AWS Cloudwatch Plugin'
recipe 'newrelic_plugins::example', 'Installs New Relic Example Plugin'
recipe 'newrelic_plugins::f5', 'Installs New Relic F5 Plugin'
recipe 'newrelic_plugins::mysql', 'Installs New Relic MySQL Plugin'
recipe 'newrelic_plugins::memcached_java', 'Installs New Relic Memcached Java Plugin'
recipe 'newrelic_plugins::memcached_ruby', 'Installs New Relic Memcached Ruby Plugin'
recipe 'newrelic_plugins::rackspace_load_balancers', 'Installs New Relic Rackspace Load Balancers Plugin'
recipe 'newrelic_plugins::wikipedia_example_java', 'Installs New Relic Wikipedia Example Java Plugin'
recipe 'newrelic_plugins::wikipedia_example_ruby', 'Installs New Relic Wikipedia Example Ruby Plugin'
%w{ debian ubuntu centos suse fedora redhat }.each do |os|
supports os
end
attribute 'newrelic/license_key',
:display_name => 'New Relic License Key',
:description => 'License Key for your New Relic account',
:type => 'string',
:required => 'required',
:recipes => [
'newrelic_plugins::aws_cloudwatch',
'newrelic_plugins::example',
'newrelic_plugins::f5',
'newrelic_plugins::mysql',
'newrelic_plugins::memcached_java',
'newrelic_plugins::memcached_ruby',
'newrelic_plugins::rackspace_load_balancers',
'newrelic_plugins::wikipedia_example_java',
'newrelic_plugins::wikipedia_example_ruby'
]
attribute 'newrelic/aws_cloudwatch/install_path',
:display_name => 'New Relic AWS Cloudwatch Plugin Install Path',
:description => 'Install Path for New Relic AWS Cloudwatch Plugin',
:type => 'string',
:required => 'required',
:default => '/opt/newrelic',
:recipes => ['newrelic_plugins::aws_cloudwatch']
attribute 'newrelic/aws_cloudwatch/user',
:display_name => 'New Relic AWS Cloudwatch Plugin User',
:description => 'User to run as for New Relic AWS Cloudwatch Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::aws_cloudwatch']
attribute 'newrelic/aws_cloudwatch/aws_access_key',
:display_name => 'New Relic AWS Cloudwatch Plugin Access Key',
:description => 'AWS Access Key for New Relic AWS Cloudwatch Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::aws_cloudwatch']
attribute 'newrelic/aws_cloudwatch/aws_secret_key',
:display_name => 'New Relic AWS Cloudwatch Plugin Secret Key',
:description => 'AWS Secret Key for New Relic AWS Cloudwatch Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::aws_cloudwatch']
attribute 'newrelic/aws_cloudwatch/agents',
:display_name => 'New Relic AWS Cloudwatch Plugin Agents',
:description => 'AWS Agents for New Relic AWS Cloudwatch Plugin',
:type => 'array',
:required => 'required',
:recipes => ['newrelic_plugins::aws_cloudwatch']
attribute 'newrelic/aws_cloudwatch/regions',
:display_name => 'New Relic AWS Cloudwatch Plugin Regions',
:description => 'AWS Regions for New Relic AWS Cloudwatch Plugin',
:type => 'array',
:required => 'optional',
:recipes => ['newrelic_plugins::aws_cloudwatch']
attribute 'newrelic/example/install_path',
:display_name => 'New Relic Example Plugin Install Directory',
:description => 'Install Directory for New Relic Example Plugin',
:type => 'string',
:required => 'required',
:default => '/opt/newrelic',
:recipes => ['newrelic_plugins::example']
attribute 'newrelic/example/user',
:display_name => 'New Relic Example Plugin User',
:description => 'User to run as for New Relic Example Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::example']
attribute 'newrelic/f5/install_path',
:display_name => 'New Relic F5 Plugin Install Directory',
:description => 'Install Directory for New Relic F5 Plugin',
:type => 'string',
:required => 'required',
:default => '/opt/newrelic',
:recipes => ['newrelic_plugins::f5']
attribute 'newrelic/f5/user',
:display_name => 'New Relic F5 Plugin User',
:description => 'User to run as for New Relic F5 Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::f5']
attribute 'newrelic/f5/agents',
:display_name => 'New Relic F5 Plugin Agents',
:description => 'F5 Agents for New Relic F5 Plugin',
:type => 'array',
:required => 'required',
:recipes => ['newrelic_plugins::f5']
attribute 'newrelic/mysql/install_path',
:display_name => 'New Relic MySQL Plugin Install Path',
:description => 'Install Path for New Relic MySQL Plugin',
:type => 'string',
:required => 'required',
:default => '/opt/newrelic',
:recipes => ['newrelic_plugins::mysql']
attribute 'newrelic/mysql/user',
:display_name => 'New Relic MySQL Plugin User',
:description => 'User to run as for New Relic MySQL Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::mysql']
attribute 'newrelic/mysql_plugin/servers',
:display_name => 'New Relic MySQL Plugin Server Configurations',
:description => 'Server Configurations for New Relic MySQL Plugin',
:type => 'array',
:required => 'required',
:recipes => ['newrelic_plugins::mysql']
attribute 'newrelic/mysql_plugin/java_options',
:display_name => 'New Relic MySQL Plugin Java Command Options',
:description => 'Java command options for New Relic MySQL Plugin',
:type => 'string',
:required => 'optional',
:recipes => ['newrelic_plugins::mysql']
attribute 'newrelic/memcached_java/install_path',
:display_name => 'New Relic Memcached Java Plugin Install Path',
:description => 'Install Path for New Relic Memcached Java Plugin',
:type => 'string',
:required => 'required',
:default => '/opt/newrelic',
:recipes => ['newrelic_plugins::memcached_java']
attribute 'newrelic/memcached_java/user',
:display_name => 'New Relic Memcached Java Plugin User',
:description => 'User to run as for New Relic Memcached Java Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::memcached_java']
attribute 'newrelic/memcached_java/servers',
:display_name => 'New Relic Memcached Java Plugin Servers',
:description => 'Memcached servers for New Relic Memcached Java Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::memcached_java']
attribute 'newrelic/memcached_java/java_options',
:display_name => 'New Relic Memcached Java Plugin Java Options',
:description => 'Java options for New Relic Memcached Java Plugin',
:type => 'string',
:required => 'optional',
:recipes => ['newrelic_plugins::memcached_java']
attribute 'newrelic/memcached_ruby/install_path',
:display_name => 'New Relic Memcached Ruby Plugin Install Path',
:description => 'Install Path for New Relic Memcached Ruby Plugin',
:type => 'string',
:required => 'required',
:default => '/opt/newrelic',
:recipes => ['newrelic_plugins::memcached_ruby']
attribute 'newrelic/memcached_ruby/user',
:display_name => 'New Relic Memcached Ruby Plugin User',
:description => 'User to run as for New Relic Memcached Ruby Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::memcached_ruby']
attribute 'newrelic/memcached_ruby/agents',
:display_name => 'New Relic Memcached Ruby Plugin Agents',
:description => 'Agents for New Relic Memcached Ruby Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::memcached_ruby']
attribute 'newrelic/rackspace_load_balancers/install_path',
:display_name => 'New Relic Rackspace Load Balancers Plugin Install Path',
:description => 'Install Path for Rackspace Load Balancers Plugin',
:type => 'string',
:required => 'required',
:default => '/opt/newrelic',
:recipes => ['newrelic_plugins::rackspace_load_balancers']
attribute 'newrelic/rackspace_load_balancers/user',
:display_name => 'New Relic Rackspace Load Balancers Plugin User',
:description => 'User to run as for New Relic Rackspace Load Balancers Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::rackspace_load_balancers']
attribute 'newrelic/rackspace_load_balancers/username',
:display_name => 'New Relic Rackspace Load Balancers Plugin Username',
:description => 'Username for Rackspace Load Balancers',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::rackspace_load_balancers']
attribute 'newrelic/rackspace_load_balancers/api_key',
:display_name => 'New Relic Rackspace Load Balancers API Key',
:description => 'API Key for Rackspace Load Balancers',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::rackspace_load_balancers']
attribute 'newrelic/rackspace_load_balancers/region',
:display_name => 'New Relic Rackspace Load Balancers Region',
:description => 'Region for Rackspace Load Balancers',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::rackspace_load_balancers']
attribute 'newrelic/wikipedia_example_java/install_path',
:display_name => 'New Relic Wikipedia Example Java Plugin Install Path',
:description => 'Install Path for New Relic Wikipedia Example Java Plugin',
:type => 'string',
:required => 'required',
:default => '/opt/newrelic',
:recipes => ['newrelic_plugins::wikipedia_example_java']
attribute 'newrelic/wikipedia_example_java/user',
:display_name => 'New Relic Wikipedia Example Java Plugin User',
:description => 'User to run as for New Relic Wikipedia Example Java Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::wikipedia_example_java']
attribute 'newrelic/wikipedia_example_ruby/install_path',
:display_name => 'New Relic Wikipedia Example Ruby Plugin Install Path',
:description => 'Install Path for New Relic Wikipedia Example Ruby Plugin',
:type => 'string',
:required => 'required',
:default => '/opt/newrelic',
:recipes => ['newrelic_plugins::wikipedia_example_ruby']
attribute 'newrelic/wikipedia_example_ruby/user',
:display_name => 'New Relic Wikipedia Example Ruby Plugin User',
:description => 'User to run as for New Relic Wikipedia Example Ruby Plugin',
:type => 'string',
:required => 'required',
:recipes => ['newrelic_plugins::wikipedia_example_ruby']