raygun-apm 0.0.9-x86-linux → 0.0.10-x86-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -4
- data/README.rdoc +4 -13
- data/lib/raygun/apm/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd7c85a4270181f623f3e3b0efe0368144455ddd05f98db200f9f627cc7e5b82
|
4
|
+
data.tar.gz: bdcd1cb011d79af343f26983e016c423bac89af88a45d6ba11b7055bd666dbaf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f71eb265124fda0192dc5d82bfd08ef88fc6394af1686fe8d95667faf64ee7c3a4810ac8d92f5863a4c4c22c6f9a1591946e621e0dbd33a5b5ab4b87be602d3
|
7
|
+
data.tar.gz: ed8c2d95d32a85f9a54d939c531d2127d0e6f588179f03cb05174c7d575a714d59f493af11df5c7a67b7394cd4dde9edfc8021a9eecc4f6c06e837fdba1c7d75
|
data/Gemfile.lock
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
raygun-apm (0.0.
|
4
|
+
raygun-apm (0.0.10)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
benchmark_driver (0.14.
|
9
|
+
benchmark_driver (0.14.22)
|
10
10
|
debase-ruby_core_source (0.10.7)
|
11
11
|
irb (1.0.0)
|
12
|
-
minitest (5.
|
12
|
+
minitest (5.13.0)
|
13
13
|
rake (12.3.3)
|
14
14
|
rake-compiler (1.0.8)
|
15
15
|
rake
|
@@ -17,7 +17,6 @@ GEM
|
|
17
17
|
|
18
18
|
PLATFORMS
|
19
19
|
ruby
|
20
|
-
x64-mingw32
|
21
20
|
|
22
21
|
DEPENDENCIES
|
23
22
|
benchmark_driver (~> 0.14.17)
|
data/README.rdoc
CHANGED
@@ -33,6 +33,10 @@ To launch Raygun Agent using docker
|
|
33
33
|
docker pull raygunowner/raygun-apm
|
34
34
|
docker run -v raygun-agent:/usr/share/Raygun -e "RAYGUN_AGENT_TOKEN=<token>" -p 2790:2790 -p 2788:2788 -p 2799:2799/udp -it raygunowner/raygun-apm:latest
|
35
35
|
|
36
|
+
=== Ruby on Rails
|
37
|
+
|
38
|
+
For Rails support see {documentation}[https://www.rubydoc.info/gems/raygun-apm-rails/0.1.0] of the railgun-apm-rails gem.
|
39
|
+
|
36
40
|
== Profiler Setup
|
37
41
|
|
38
42
|
Include the gem in your Gemfile
|
@@ -90,16 +94,3 @@ Extended events can be sent where appropiate
|
|
90
94
|
event[:query] = 'SELECT * from FOO;'
|
91
95
|
event[:duration] = 1000
|
92
96
|
tracer.emit(event)
|
93
|
-
|
94
|
-
=== Ruby on Rails
|
95
|
-
|
96
|
-
For Ruby on Rails integration the following needs to be added to the <code>application.rb</code> file
|
97
|
-
|
98
|
-
require 'raygun/apm/middleware'
|
99
|
-
config.middleware.use Raygun::Apm::Middleware
|
100
|
-
|
101
|
-
==== Supported versions
|
102
|
-
The gem has been tested with the following Ruby on Rails versions:
|
103
|
-
* 5.2.2
|
104
|
-
|
105
|
-
Other versions may work as long as the same Active Support Instrumentation interface is being used.
|
data/lib/raygun/apm/version.rb
CHANGED