forked from DataDog/chef-datadog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
40 lines (36 loc) · 1.33 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
name 'datadog'
maintainer 'Datadog'
maintainer_email 'package@datadoghq.com'
license 'Apache-2.0'
description 'Installs/Configures datadog components'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '3.2.0'
chef_version '>= 12.7'
source_url 'https://github.com/DataDog/chef-datadog'
issues_url 'https://github.com/DataDog/chef-datadog/issues'
%w[
amazon
centos
debian
fedora
redhat
scientific
ubuntu
windows
suse
].each do |os|
supports os
end
depends 'chef_handler', '>= 1.2'
depends 'apt' # Use '< 6.0.0' with Chef < 12.9
depends 'yum', '>= 3.0' # Use '< 5.0' with Chef < 12.14
recipe 'datadog::default', 'Default'
recipe 'datadog::dd-agent', 'Installs the Datadog Agent'
recipe 'datadog::dd-handler', 'Installs a Chef handler for Datadog'
recipe 'datadog::repository', 'Installs the Datadog package repository'
recipe 'datadog::dogstatsd-ruby', 'Installs the Ruby dogstatsd package for custom metrics'
recipe 'datadog::ddtrace-ruby', 'Installs the Ruby ddtrace package for APM'
# integration-specific
recipe 'datadog::cassandra', 'Installs and configures the Cassandra integration'
recipe 'datadog::couchdb', 'Installs and configures the CouchDB integration'
recipe 'datadog::postfix', 'Installs and configures the Postfix integration'