cookbook 'graphite_lwrp', '~> 0.3.3'
graphite_lwrp (2) Versions 0.3.3 Follow1
Installs/Configures graphite
cookbook 'graphite_lwrp', '~> 0.3.3', :supermarket
knife supermarket install graphite_lwrp
knife supermarket download graphite_lwrp
Description
This cookbook provides resources and providers to install and configure Graphite Web Interface under virtualenv. Currently supported resources:
- Graphite web (
web
)
Requirements
- carbon Installs the Carbon Cache and Carbon Relay Services
- Python Provides virtualenv support and the pip provider
- Runit Minimum version of 1.0.6
Usage
There are 3 examples in the examples/ directory for your review. Additionally there are examples in the test directory for simple examples.
Note the examples below are not intended for usage on EC2 primarily. Hosting a Metrics collector can require a massive amount of I/O depending on your schema. It is possible to host an statsd collector on a hi1.4xlarge and this cookbook can do that.
shell ec2-run-instances ami-fd20ad94 -t hi1.4xlarge -k something --block-device-mapping=sdb=ephemeral0 --block-device-mapping=sdc=ephemeral1 --block-device-mapping=sdd=ephemeral2 --block-device-mapping=sde=ephemeral3
examples/graphite_statsd/
Host many carbon agents configured behind a single carbon-relay to be able to recieve and store metrics. Configure apache on port 80 to provide cors.examples/graphite_collectd/
Host many carbon agents configured behind many carbon-relays able to recieve and store metrics. Configure HAProxy to listen on the standard carbon-relay ports and load balance further. Apache is configured on port 80 for cors.examples/graphite_render/
Our graphite servers have dual E5-2620 CPU's running at 2.0Ghz which can lead to slow down cairo. We found that having a E3-1230v2 can get the data over the wire and generate the image and push it to your client faster than our graphite servers could generate that same image. Configures graphite-web only to listen on 8080, no carbon-agents are configured.
Benchmarks
- graphite_statsd running on an Dual E5-2620 has been known to handle up to 1million metrics without dropping any metrics.
- graphite_collectd running on an Dual E5-2620 has been known to handle up to 3million metrics without dropping any metrics. Using HAProxy is configured to have a connection timeout of 5000 which can lead to the tcp connection needing to be re-established every 83 minutes.
Resources and Providers
This cookbook provides one resource and the corresponding provider.
web.rb
Installs and Configured Graphite Web from Pypi
Actions:
-
install
- installs graphite-web -
create
- configures graphite-web -
start
- starts the graphite-web service -
stop
- stops the graphite-web service -
git
- install graphite-web from stable sources
Attribute Parameters:
-
graphite_stable_base_git_uri
- String - default -https://github.com/graphite-project/
-
graphite_stable_packages
- Hash - default -{ "graphite-web" => "0.9.x", "whisper" => "0.9.x" }
-
initial_data_template
- String - default -initial_data.json.erb
-
python_interpreter
- String - default -python2.7
-
init_style
- String - defaultupstart
-
cookbook
- String - default -graphite
-
user
- String - default -graphite
-
group
- String - default -graphite
-
workers
- Fixnum - default -1
-
timeout
- Fixnum - default -300
-
backlog
- Fixnum - default -655355
-
listen_port
- Fixnum, - default -8080
-
listen_address
- String - default -0.0.0.0
-
cpu_affinity
- String -
local_settings_template
- String - defaultlocal_settings.py.erb
-
web_template
- String - defaultgraphite-web.init.erb
-
graphite_home
- String - default -/opt/graphite
-
graphite_packages
- Hash - default -{ "graphite-web" => "0.9.10", "gunicorn" => "0.16.1", "Djan go" => "1.3", "django-tagging" => "0.3.1", "simplejson" => "2.1.6", "Twisted" => "11.0.0", "python-memcached" => "1.47" , "txAMQP" => "0.4", "pytz" => "2012b" }
-
debug
- String - defaultFalse
-
time_zone
- String - default -UTC
- `log_rendering_performance, :kind_of => String, :default => "False"
- `log_cache_performance, :kind_of => String, :default => "False"
-
documentation_url
- String - Configures theDOCUMENTATION_URL
in local_settings.py -
smtp_server
- String - configures theSMTP_SERVER
setting in local_settings.py -
use_ldap_auth
- String - Not fully implemented, please use your own local_settings.py template if you require this behavior -
database_engine
- String - default sqlite3 -
database
- Hash - default -{ :name => 'graphite', :user => 'graphite', :password => String.new, :host => String.new, :port => 5432 }
-
cluster_servers
- Array -
memcache_hosts
- Array -
rendering_hosts
- Array -
remote_rendering
- Aray -
data_dirs
- String -
carbonlink_hosts
- Array
Contributing
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write you change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using Github
License and Author
Author:: Scott M. Likens scott@spam.likens.us
Copyright 2013, Scott M. Likens
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Dependent cookbooks
python >= 0.0.0 |
carbon >= 0.0.0 |
git >= 0.0.0 |
runit >= 0.0.0 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
Collaborator Number Metric
0.3.3 failed this metric
Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.
Contributing File Metric
0.3.3 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
0.3.3 failed this metric
FC009: Resource attribute not recognised: graphite_lwrp/providers/web.rb:11
FC009: Resource attribute not recognised: graphite_lwrp/recipes/test_graphite.rb:12
FC021: Resource condition in provider may not behave as expected: graphite_lwrp/providers/web.rb:62
FC021: Resource condition in provider may not behave as expected: graphite_lwrp/providers/web.rb:157
FC064: Ensure issues_url is set in metadata: graphite_lwrp/metadata.rb:1
FC065: Ensure source_url is set in metadata: graphite_lwrp/metadata.rb:1
FC066: Ensure chef_version is set in metadata: graphite_lwrp/metadata.rb:1
FC069: Ensure standardized license defined in metadata: graphite_lwrp/metadata.rb:1
FC074: LWRP should use DSL to define resource's default action: graphite_lwrp/resources/web.rb:1
FC085: Resource using new_resource.updated_by_last_action to converge resource: graphite_lwrp/providers/web.rb:112
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
No Binaries Metric
0.3.3 passed this metric
Testing File Metric
0.3.3 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.3.3 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
0.3.3 failed this metric
0.3.3 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
0.3.3 failed this metric
FC009: Resource attribute not recognised: graphite_lwrp/providers/web.rb:11
FC009: Resource attribute not recognised: graphite_lwrp/recipes/test_graphite.rb:12
FC021: Resource condition in provider may not behave as expected: graphite_lwrp/providers/web.rb:62
FC021: Resource condition in provider may not behave as expected: graphite_lwrp/providers/web.rb:157
FC064: Ensure issues_url is set in metadata: graphite_lwrp/metadata.rb:1
FC065: Ensure source_url is set in metadata: graphite_lwrp/metadata.rb:1
FC066: Ensure chef_version is set in metadata: graphite_lwrp/metadata.rb:1
FC069: Ensure standardized license defined in metadata: graphite_lwrp/metadata.rb:1
FC074: LWRP should use DSL to define resource's default action: graphite_lwrp/resources/web.rb:1
FC085: Resource using new_resource.updated_by_last_action to converge resource: graphite_lwrp/providers/web.rb:112
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
No Binaries Metric
0.3.3 passed this metric
Testing File Metric
0.3.3 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.3.3 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
0.3.3 failed this metric
FC009: Resource attribute not recognised: graphite_lwrp/recipes/test_graphite.rb:12
FC021: Resource condition in provider may not behave as expected: graphite_lwrp/providers/web.rb:62
FC021: Resource condition in provider may not behave as expected: graphite_lwrp/providers/web.rb:157
FC064: Ensure issues_url is set in metadata: graphite_lwrp/metadata.rb:1
FC065: Ensure source_url is set in metadata: graphite_lwrp/metadata.rb:1
FC066: Ensure chef_version is set in metadata: graphite_lwrp/metadata.rb:1
FC069: Ensure standardized license defined in metadata: graphite_lwrp/metadata.rb:1
FC074: LWRP should use DSL to define resource's default action: graphite_lwrp/resources/web.rb:1
FC085: Resource using new_resource.updated_by_last_action to converge resource: graphite_lwrp/providers/web.rb:112
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
0.3.3 passed this metric
Testing File Metric
0.3.3 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.3.3 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
0.3.3 failed this metric
0.3.3 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number