forked from DataDog/chef-datadog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
34 lines (30 loc) · 1.13 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
name "datadog"
maintainer "Datadog"
maintainer_email "[email protected]"
license "Apache 2.0"
description "Installs/Configures datadog components"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.2.0'
%w{
amazon
centos
debian
redhat
scientific
ubuntu
}.each do |os|
supports os
end
depends "apt" # We recommend '>= 2.1.0'. See CHANGELOG.md for details
depends "chef_handler", "~> 1.1.0"
depends "yum"
suggests "python"
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-python", "Installs the Python dogstatsd package for custom metrics"
recipe "datadog::dogstatsd-ruby", "Installs the Ruby dogstatsd package for custom metrics"
# integration-specific
recipe "datadog::cassandra", "Installs and configures the Cassandra integration"
recipe "datadog::couchdb", "Installs and configures the CouchDB integration"