raygun-apm 0.0.9-x86-mingw32 → 0.0.10-x86-mingw32
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/2.5/raygun_ext.so +0 -0
- data/lib/raygun/2.6/raygun_ext.so +0 -0
- 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: a8a088de11d9fcd0d677abb165e341cfca9439bfc810bc70f7a9d4515fe6b807
|
4
|
+
data.tar.gz: 83d1576babffba57c60476fa41a09875c60fc2d07333e14da0cfd5322680d10a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9bcbdb80dee2b429ca531e73d86298c1067f8b269618338476514b7813b8ee6f827c93c5ca9426b97ee2083f2faff6ef81e98c15069964cad62c5e0b1ef24e2
|
7
|
+
data.tar.gz: b74a9809abc42cd113fa69e5dfa799287af16e5235d6bf26e22038539f9bbb8eb83ddc5794667e0a962d66c4844f3e830528dfc6666d6f71164bbc5140c878ac
|
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.
|
Binary file
|
Binary file
|
data/lib/raygun/apm/version.rb
CHANGED