instana 0.11.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +6 -0
- data/README.md +1 -1
- data/lib/instana/frameworks/cuba.rb +6 -0
- data/lib/instana/frameworks/roda.rb +6 -0
- data/lib/instana/frameworks/sinatra.rb +9 -0
- data/lib/instana/instrumentation/net-http.rb +1 -1
- data/lib/instana/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ab824e1df01d94750009ebdc58e8994e1f0cd23
|
4
|
+
data.tar.gz: adf0ded7e5e26a950b4d53569d4944ea2af45759
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64ca8aa49eda3202a5fc567f1c62640dd4db3fc7a214ca8ad39d947f675f4fe362fb2ae19c1d9419ffd6317e55ce96ed5bb951e2da2d6bca1fbbe518d633ffb5
|
7
|
+
data.tar.gz: 5200b271d946b337a5712113ed34a9f741b8774ac6679ff254d975ac0c1eeb0de5d49a30cd065253c13f4591b5e143a81dafb69f8b5c1908e73a70a033cc1fbe
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -93,7 +93,7 @@ Current components are `:gc`, `:memory` and `:thread`.
|
|
93
93
|
|
94
94
|
### Rack Middleware
|
95
95
|
|
96
|
-
This gem will detect and automagically insert the Instana Rack middleware into the middleware stack when
|
96
|
+
This gem will detect and automagically insert the Instana Rack middleware into the middleware stack when a [supported framework](https://instana.atlassian.net/wiki/display/DOCS/Ruby) is present. We are currently adding support for more frameworks. If you are using a yet to be instrumented framework, you can insert the Instana Rack middleware with the following:
|
97
97
|
|
98
98
|
```Ruby
|
99
99
|
require "instana/rack"
|
@@ -43,7 +43,7 @@ Net::HTTP.class_eval {
|
|
43
43
|
::Instana.tracer.log_exit(:'net-http')
|
44
44
|
end
|
45
45
|
|
46
|
-
Instana.logger.info "Instrumenting net/http"
|
46
|
+
Instana.logger.info "Instana: Instrumenting net/http"
|
47
47
|
|
48
48
|
alias request_without_instana request
|
49
49
|
alias request request_with_instana
|
data/lib/instana/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: instana
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Giacomo Lombardo
|
@@ -133,7 +133,10 @@ files:
|
|
133
133
|
- lib/instana/collectors/memory.rb
|
134
134
|
- lib/instana/collectors/thread.rb
|
135
135
|
- lib/instana/config.rb
|
136
|
+
- lib/instana/frameworks/cuba.rb
|
136
137
|
- lib/instana/frameworks/rails.rb
|
138
|
+
- lib/instana/frameworks/roda.rb
|
139
|
+
- lib/instana/frameworks/sinatra.rb
|
137
140
|
- lib/instana/instrumentation.rb
|
138
141
|
- lib/instana/instrumentation/net-http.rb
|
139
142
|
- lib/instana/instrumentation/rack.rb
|