scout_apm 0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f8028449405090925eb88ee0254ad5701121d100
4
+ data.tar.gz: 54e43b9958363ed353e710a73d157e0354968bf2
5
+ SHA512:
6
+ metadata.gz: a7c93db879549d9e7a21cae4b0da7d039c8f84c4b0ff6d780504136c3926398d898b8db96497e4dfa332b1932c7607edb152da9ebdb3931c70345d650364a205
7
+ data.tar.gz: 78b5548d07db590a0a9bd9ef9ea55c4751e10a708d709e02001f996f00cb65960200cb6915148b21097fee77a7f440eb087871ef9fc0966300f077dc30bda87b
data/.gitignore ADDED
@@ -0,0 +1,6 @@
1
+ ./**/.DS_Store
2
+ *.gem
3
+ .bundle
4
+ Gemfile.lock
5
+ pkg/*
6
+ .rvmrc
@@ -0,0 +1,3 @@
1
+ # 0.1.0
2
+
3
+ * Boom.
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in scout_apm.gemspec
4
+ gemspec
data/README.markdown ADDED
@@ -0,0 +1,42 @@
1
+ __Rails application monitoring is avaiable by invite-only @ Scout.__
2
+
3
+ # ScoutApm
4
+
5
+ A Ruby gem for detailed Rails application performance analysis. Metrics are reported to [Scout](https://scoutapp.com), a hosted server and application monitoring service.
6
+
7
+ ## Getting Started
8
+
9
+ Install the gem:
10
+
11
+ gem install scout_apm
12
+
13
+ Signup for a [Scout](https://apm.scoutapp.com) account and copy the config file to `RAILS_ROOT/config/scout_apm.yml`.
14
+
15
+ Your config file should look like:
16
+
17
+ common: &defaults
18
+ name: YOUR_APPLICATION_NAME
19
+ key: YOUR_APPLICATION_KEY
20
+ monitor: true
21
+
22
+ production:
23
+ <<: *defaults
24
+
25
+ ## Supported Frameworks
26
+
27
+ * Rails 2.2 through Rails 4
28
+
29
+ ## Supported Rubies
30
+
31
+ * Ruby 1.8.7 through Ruby 2.1.2
32
+
33
+ ## Supported Application Servers
34
+
35
+ * Phusion Passenger
36
+ * Thin
37
+ * WEBrick
38
+ * Unicorn (make sure to add `preload_app true` to `config/unicorn.rb`)
39
+
40
+ ## Help
41
+
42
+ Email support@scoutapp.com if you need a hand.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"