appoptics_apm_mnfst 4.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.dockerignore +5 -0
- data/.github/ISSUE_TEMPLATE/bug-or-feature-request.md +16 -0
- data/.gitignore +29 -0
- data/.rubocop.yml +8 -0
- data/.travis.yml +121 -0
- data/.yardopts +4 -0
- data/CHANGELOG.md +769 -0
- data/CONFIG.md +33 -0
- data/Gemfile +29 -0
- data/LICENSE +193 -0
- data/README.md +393 -0
- data/Rakefile +230 -0
- data/appoptics_apm.gemspec +61 -0
- data/bin/appoptics_apm_config +15 -0
- data/build_gem.sh +15 -0
- data/build_gem_upload_to_packagecloud.sh +20 -0
- data/examples/SDK/01_basic_tracing.rb +67 -0
- data/examples/carrying_context.rb +220 -0
- data/ext/oboe_metal/extconf.rb +114 -0
- data/ext/oboe_metal/lib/.keep +0 -0
- data/ext/oboe_metal/noop/noop.c +7 -0
- data/ext/oboe_metal/src/VERSION +1 -0
- data/init.rb +4 -0
- data/lib/appoptics_apm.rb +76 -0
- data/lib/appoptics_apm/api.rb +20 -0
- data/lib/appoptics_apm/api/layerinit.rb +41 -0
- data/lib/appoptics_apm/api/logging.rb +375 -0
- data/lib/appoptics_apm/api/memcache.rb +37 -0
- data/lib/appoptics_apm/api/metrics.rb +55 -0
- data/lib/appoptics_apm/api/profiling.rb +203 -0
- data/lib/appoptics_apm/api/tracing.rb +53 -0
- data/lib/appoptics_apm/api/util.rb +122 -0
- data/lib/appoptics_apm/base.rb +230 -0
- data/lib/appoptics_apm/config.rb +254 -0
- data/lib/appoptics_apm/frameworks/grape.rb +97 -0
- data/lib/appoptics_apm/frameworks/padrino.rb +108 -0
- data/lib/appoptics_apm/frameworks/rails.rb +94 -0
- data/lib/appoptics_apm/frameworks/rails/inst/action_controller.rb +104 -0
- data/lib/appoptics_apm/frameworks/rails/inst/action_controller3.rb +55 -0
- data/lib/appoptics_apm/frameworks/rails/inst/action_controller4.rb +48 -0
- data/lib/appoptics_apm/frameworks/rails/inst/action_controller5.rb +50 -0
- data/lib/appoptics_apm/frameworks/rails/inst/action_controller_api.rb +50 -0
- data/lib/appoptics_apm/frameworks/rails/inst/action_view.rb +58 -0
- data/lib/appoptics_apm/frameworks/rails/inst/action_view_30.rb +50 -0
- data/lib/appoptics_apm/frameworks/rails/inst/active_record.rb +27 -0
- data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/mysql.rb +43 -0
- data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/mysql2.rb +29 -0
- data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/postgresql.rb +31 -0
- data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/utils.rb +119 -0
- data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/utils5x.rb +108 -0
- data/lib/appoptics_apm/frameworks/sinatra.rb +125 -0
- data/lib/appoptics_apm/inst/bunny-client.rb +148 -0
- data/lib/appoptics_apm/inst/bunny-consumer.rb +89 -0
- data/lib/appoptics_apm/inst/curb.rb +330 -0
- data/lib/appoptics_apm/inst/dalli.rb +85 -0
- data/lib/appoptics_apm/inst/delayed_job.rb +92 -0
- data/lib/appoptics_apm/inst/em-http-request.rb +101 -0
- data/lib/appoptics_apm/inst/excon.rb +125 -0
- data/lib/appoptics_apm/inst/faraday.rb +94 -0
- data/lib/appoptics_apm/inst/grpc_client.rb +162 -0
- data/lib/appoptics_apm/inst/grpc_server.rb +120 -0
- data/lib/appoptics_apm/inst/http.rb +73 -0
- data/lib/appoptics_apm/inst/httpclient.rb +174 -0
- data/lib/appoptics_apm/inst/memcached.rb +86 -0
- data/lib/appoptics_apm/inst/mongo.rb +246 -0
- data/lib/appoptics_apm/inst/mongo2.rb +225 -0
- data/lib/appoptics_apm/inst/moped.rb +466 -0
- data/lib/appoptics_apm/inst/rack.rb +199 -0
- data/lib/appoptics_apm/inst/redis.rb +275 -0
- data/lib/appoptics_apm/inst/resque.rb +151 -0
- data/lib/appoptics_apm/inst/rest-client.rb +48 -0
- data/lib/appoptics_apm/inst/sequel.rb +178 -0
- data/lib/appoptics_apm/inst/sidekiq-client.rb +55 -0
- data/lib/appoptics_apm/inst/sidekiq-worker.rb +65 -0
- data/lib/appoptics_apm/inst/twitter-cassandra.rb +294 -0
- data/lib/appoptics_apm/inst/typhoeus.rb +108 -0
- data/lib/appoptics_apm/instrumentation.rb +22 -0
- data/lib/appoptics_apm/legacy_method_profiling.rb +90 -0
- data/lib/appoptics_apm/loading.rb +65 -0
- data/lib/appoptics_apm/logger.rb +42 -0
- data/lib/appoptics_apm/method_profiling.rb +33 -0
- data/lib/appoptics_apm/noop/README.md +9 -0
- data/lib/appoptics_apm/noop/context.rb +26 -0
- data/lib/appoptics_apm/noop/metadata.rb +22 -0
- data/lib/appoptics_apm/ruby.rb +35 -0
- data/lib/appoptics_apm/sdk/custom_metrics.rb +92 -0
- data/lib/appoptics_apm/sdk/tracing.rb +315 -0
- data/lib/appoptics_apm/support.rb +119 -0
- data/lib/appoptics_apm/test.rb +94 -0
- data/lib/appoptics_apm/thread_local.rb +26 -0
- data/lib/appoptics_apm/util.rb +319 -0
- data/lib/appoptics_apm/version.rb +15 -0
- data/lib/appoptics_apm/xtrace.rb +103 -0
- data/lib/joboe_metal.rb +212 -0
- data/lib/oboe.rb +7 -0
- data/lib/oboe/README +2 -0
- data/lib/oboe/backward_compatibility.rb +80 -0
- data/lib/oboe/inst/rack.rb +11 -0
- data/lib/oboe_metal.rb +198 -0
- data/lib/rails/generators/appoptics_apm/install_generator.rb +45 -0
- data/lib/rails/generators/appoptics_apm/templates/appoptics_apm_initializer.rb +265 -0
- data/yardoc_frontpage.md +26 -0
- metadata +266 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d5d401e57a5c679928a6a21d975f4e123431dd3efbe20f5c4eeda8832b40a5b7
|
4
|
+
data.tar.gz: 35c2d877022f4a294f6302b1205f608063985a2398281bdc6f1009661f4e1a50
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 264ffe58bd6ae3fb2bf7cd0c5f40d007f046a9a770e6a2fa9123d6deb6516d3ca9639302c0a54cf885f9919e232a7389c10583f0fb1bbb473cceb565ec4a23c2
|
7
|
+
data.tar.gz: e0a961f15971a7574704f3b042c7bc44bfb25ac893f8575f567f023dfe06bfe42310e76830f1a511eb89ee76c0c785dae4e785b5b62667b6d9626e3f9b1921dd
|
data/.dockerignore
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
name: Bug or Feature request
|
3
|
+
about: general purpose template
|
4
|
+
title: "[Bug] or [Feature request]"
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
# Description
|
11
|
+
|
12
|
+
# How to reproduce or use case
|
13
|
+
|
14
|
+
# Code Sample (if available)
|
15
|
+
|
16
|
+
# OS, Ruby version, Gemfile, Gemfile.lock, log message ... (if relevant)
|
data/.gitignore
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
oboe*.gem
|
2
|
+
Gemfile.lock
|
3
|
+
gemfiles/*.lock
|
4
|
+
.ruby-version
|
5
|
+
*~
|
6
|
+
*.swp
|
7
|
+
.env
|
8
|
+
lib/oboe_metal.so
|
9
|
+
ext/oboe_metal/Makefile
|
10
|
+
ext/oboe_metal/mkmf.log
|
11
|
+
ext/oboe_metal/oboe_metal.so
|
12
|
+
ext/oboe_metal/oboe_noop.so
|
13
|
+
ext/oboe_metal/*.o
|
14
|
+
ext/oboe_metal/lib/liboboe*so*
|
15
|
+
ext/oboe_metal/src/oboe.h
|
16
|
+
ext/oboe_metal/src/oboe.hpp
|
17
|
+
ext/oboe_metal/src/oboe_debug.h
|
18
|
+
ext/oboe_metal/src/oboe_wrap.cxx
|
19
|
+
ext/oboe_metal/src/bson/*
|
20
|
+
log/
|
21
|
+
.vagrant
|
22
|
+
gemfiles/.bundle
|
23
|
+
swig*
|
24
|
+
*.gem
|
25
|
+
.yardoc
|
26
|
+
coverage
|
27
|
+
doc
|
28
|
+
.*byebug*
|
29
|
+
gemfiles/vendor*
|
data/.rubocop.yml
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,121 @@
|
|
1
|
+
language: ruby
|
2
|
+
|
3
|
+
cache:
|
4
|
+
bundler: true
|
5
|
+
directories:
|
6
|
+
- vendor/bundle
|
7
|
+
|
8
|
+
env:
|
9
|
+
- DBTYPE=postgresql
|
10
|
+
- DBTYPE=mysql2
|
11
|
+
- DBTYPE=mysql
|
12
|
+
|
13
|
+
rvm:
|
14
|
+
- 2.6.0
|
15
|
+
- 2.5.3
|
16
|
+
- 2.4.5
|
17
|
+
- 2.3.8
|
18
|
+
# - ruby-head
|
19
|
+
# - jruby-9.0.5.0
|
20
|
+
|
21
|
+
gemfile:
|
22
|
+
- gemfiles/libraries.gemfile
|
23
|
+
- gemfiles/unit.gemfile
|
24
|
+
- gemfiles/instrumentation_mocked.gemfile
|
25
|
+
- gemfiles/instrumentation_mocked_oldgems.gemfile
|
26
|
+
- gemfiles/frameworks.gemfile
|
27
|
+
- gemfiles/rails52.gemfile
|
28
|
+
- gemfiles/rails42.gemfile
|
29
|
+
- gemfiles/delayed_job.gemfile
|
30
|
+
- gemfiles/noop.gemfile
|
31
|
+
|
32
|
+
matrix:
|
33
|
+
exclude:
|
34
|
+
- rvm: ruby-head
|
35
|
+
gemfile: gemfiles/rails42.gemfile
|
36
|
+
- rvm: 2.6.0
|
37
|
+
gemfile: gemfiles/rails42.gemfile
|
38
|
+
|
39
|
+
- rmv: 2.6.0
|
40
|
+
env: DBTYPE=mysql
|
41
|
+
- rvm: 2.5.3
|
42
|
+
env: DBTYPE=mysql
|
43
|
+
- rvm: 2.4.5
|
44
|
+
env: DBTYPE=mysql
|
45
|
+
- rvm: ruby-head
|
46
|
+
env: DBTYPE=mysql
|
47
|
+
|
48
|
+
- gemfile: gemfiles/unit.gemfile
|
49
|
+
env: DBTYPE=mysql
|
50
|
+
- gemfile: gemfiles/noop.gemfile
|
51
|
+
env: DBTYPE=mysql
|
52
|
+
- gemfile: gemfiles/libraries.gemfile
|
53
|
+
env: DBTYPE=mysql
|
54
|
+
- gemfile: gemfiles/instrumentation_mocked.gemfile
|
55
|
+
env: DBTYPE=mysql
|
56
|
+
- gemfile: gemfiles/instrumentation_mocked_oldgems.gemfile
|
57
|
+
env: DBTYPE=mysql
|
58
|
+
- gemfile: gemfiles/frameworks.gemfile
|
59
|
+
env: DBTYPE=mysql
|
60
|
+
- gemfile: gemfiles/rails51.gemfile
|
61
|
+
env: DBTYPE=mysql
|
62
|
+
- gemfile: gemfiles/rails52.gemfile
|
63
|
+
env: DBTYPE=mysql
|
64
|
+
- gemfile: gemfiles/delayed_job.gemfile
|
65
|
+
env: DBTYPE=mysql
|
66
|
+
|
67
|
+
- gemfile: gemfiles/unit.gemfile
|
68
|
+
env: DBTYPE=mysql2
|
69
|
+
- gemfile: gemfiles/noop.gemfile
|
70
|
+
env: DBTYPE=mysql2
|
71
|
+
- gemfile: gemfiles/libraries.gemfile
|
72
|
+
env: DBTYPE=mysql2
|
73
|
+
- gemfile: gemfiles/instrumentation_mocked.gemfile
|
74
|
+
env: DBTYPE=mysql2
|
75
|
+
- gemfile: gemfiles/instrumentation_mocked_oldgems.gemfile
|
76
|
+
env: DBTYPE=mysql2
|
77
|
+
- gemfile: gemfiles/frameworks.gemfile
|
78
|
+
env: DBTYPE=mysql2
|
79
|
+
- gemfile: gemfiles/delayed_job.gemfile
|
80
|
+
env: DBTYPE=mysql2
|
81
|
+
allow_failures:
|
82
|
+
- rvm: ruby-head
|
83
|
+
|
84
|
+
# FIXME: Figure out if this is still an issue when reviewing cassandra test setup
|
85
|
+
# Attempt Travis/Cassandra fix re: https://github.com/travis-ci/travis-ci/issues/1484
|
86
|
+
# Updated Cassandra: https://github.com/travis-ci/travis-ci/issues/1650
|
87
|
+
|
88
|
+
before_install:
|
89
|
+
- sudo service cassandra stop
|
90
|
+
- sudo sh -c "echo 'JVM_OPTS=\"\${JVM_OPTS} -Djava.net.preferIPv4Stack=false\"' >> /etc/cassandra/cassandra-env.sh"
|
91
|
+
- echo "127.0.0.1 localhost" | sudo tee /etc/hosts
|
92
|
+
- echo "127.0.0.1 " `hostname` | sudo tee -a /etc/hosts
|
93
|
+
- sudo service cassandra start
|
94
|
+
|
95
|
+
install:
|
96
|
+
- curl -LO http://kent.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz
|
97
|
+
- tar xzf swig-3.0.8.tar.gz
|
98
|
+
- pushd swig-3.0.8
|
99
|
+
- ./configure && make && sudo make install
|
100
|
+
- popd
|
101
|
+
|
102
|
+
before_script:
|
103
|
+
- bundle update --jobs=3 --retry=3
|
104
|
+
- bundle exec rake fetch_ext_deps
|
105
|
+
- bundle exec rake clean
|
106
|
+
- bundle exec rake compile
|
107
|
+
- psql -c 'create database travis_ci_test;' -U postgres
|
108
|
+
- mysql -e 'create database travis_ci_test;'
|
109
|
+
- redis-server --requirepass secret_pass &
|
110
|
+
- sleep 10
|
111
|
+
- export APPOPTICS_TOKEN_BUCKET_CAPACITY=1000
|
112
|
+
- export APPOPTICS_TOKEN_BUCKET_RATE=1000
|
113
|
+
|
114
|
+
script: "N=1 bundle exec rake test"
|
115
|
+
|
116
|
+
services:
|
117
|
+
- mongodb
|
118
|
+
- memcached
|
119
|
+
- cassandra
|
120
|
+
# - redis
|
121
|
+
- rabbitmq
|
data/.yardopts
ADDED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,769 @@
|
|
1
|
+
|
2
|
+
For the latest release info, see here:
|
3
|
+
https://github.com/tracelytics/ruby-appoptics/releases
|
4
|
+
|
5
|
+
Dates in this file are in the format MM/DD/YYYY.
|
6
|
+
|
7
|
+
# appoptics 3.8.4 (10/17/2016)
|
8
|
+
|
9
|
+
This patch release includes the following fixes:
|
10
|
+
|
11
|
+
* License, copyright, support email and links updates
|
12
|
+
|
13
|
+
Pushed to Rubygems:
|
14
|
+
|
15
|
+
https://rubygems.org/gems/appoptics/versions/3.8.4
|
16
|
+
https://rubygems.org/gems/appoptics/versions/3.8.4-java
|
17
|
+
|
18
|
+
# appoptics 3.8.3 (08/29/2016)
|
19
|
+
|
20
|
+
This patch release includes the following fixes:
|
21
|
+
|
22
|
+
* Updates to test suite: Rails servers and Curb instrumentation
|
23
|
+
* Updated Sequel instrumentation to follow latest gem changes: bc2b715b6fd6575de2969e25705ec1fd8e51c236
|
24
|
+
* Updated Excon instrumentation to follow latest gem changes: c35ac53d6fd614e86d388e3f6c0f050341cc4f37
|
25
|
+
|
26
|
+
Pushed to Rubygems:
|
27
|
+
|
28
|
+
https://rubygems.org/gems/appoptics/versions/3.8.3
|
29
|
+
https://rubygems.org/gems/appoptics/versions/3.8.3-java
|
30
|
+
|
31
|
+
# appoptics 3.8.2 (06/09/2016)
|
32
|
+
|
33
|
+
This patch release includes the following fixes:
|
34
|
+
|
35
|
+
* Load `ActionController::API` instrumentation independent of Rails 5: #174
|
36
|
+
* Fix throughput calculations: #172
|
37
|
+
|
38
|
+
Pushed to Rubygems:
|
39
|
+
|
40
|
+
- https://rubygems.org/gems/appoptics/versions/3.8.2
|
41
|
+
- https://rubygems.org/gems/appoptics/versions/3.8.2-java
|
42
|
+
|
43
|
+
# appoptics 3.8.1 (05/05/2016)
|
44
|
+
|
45
|
+
This patch release includes the following fixes:
|
46
|
+
|
47
|
+
* Use less string literals and more symbols: #168
|
48
|
+
* Fix `alias_method_chain` deprecation under Rails 5: #169
|
49
|
+
|
50
|
+
Pushed to Rubygems:
|
51
|
+
|
52
|
+
- https://rubygems.org/gems/appoptics/versions/3.8.1
|
53
|
+
- https://rubygems.org/gems/appoptics/versions/3.8.1-java
|
54
|
+
|
55
|
+
# appoptics 3.8.0 04/22/2016
|
56
|
+
|
57
|
+
This minor release includes the following new feature:
|
58
|
+
|
59
|
+
* New instrumentation for Rails API based controllers: #166
|
60
|
+
|
61
|
+
Pushed to Rubygems:
|
62
|
+
|
63
|
+
- https://rubygems.org/gems/appoptics/versions/3.8.0
|
64
|
+
- https://rubygems.org/gems/appoptics/versions/3.8.0-java
|
65
|
+
|
66
|
+
# appoptics 3.7.1 (03/30/2016)
|
67
|
+
|
68
|
+
This patch release includes the following fixes:
|
69
|
+
|
70
|
+
* Updated Mongo instrumentation to support v2+: #164
|
71
|
+
|
72
|
+
Pushed to Rubygems:
|
73
|
+
|
74
|
+
- https://rubygems.org/gems/appoptics/versions/3.7.1
|
75
|
+
- https://rubygems.org/gems/appoptics/versions/3.7.1-java
|
76
|
+
|
77
|
+
# appoptics 3.7.0 (03/16/2016)
|
78
|
+
|
79
|
+
This minor release includes the following new feature:
|
80
|
+
|
81
|
+
* New Ruby on Rails 5 instrumentation: #165
|
82
|
+
|
83
|
+
Pushed to Rubygems:
|
84
|
+
|
85
|
+
- https://rubygems.org/gems/appoptics/versions/3.7.0
|
86
|
+
- https://rubygems.org/gems/appoptics/versions/3.7.0-java
|
87
|
+
|
88
|
+
# appoptics 3.6.0 (03/02/2016)
|
89
|
+
|
90
|
+
This minor release includes the following new feature:
|
91
|
+
|
92
|
+
* New [bunny](https://github.com/ruby-amqp/bunny) (Rabbitmq) consumer instrumentation: #160
|
93
|
+
|
94
|
+
Pushed to Rubygems:
|
95
|
+
|
96
|
+
- https://rubygems.org/gems/appoptics/versions/3.6.0
|
97
|
+
- https://rubygems.org/gems/appoptics/versions/3.6.0-java
|
98
|
+
|
99
|
+
# appoptics 3.5.1 (02/15/2016)
|
100
|
+
|
101
|
+
This patch release includes the following fixes:
|
102
|
+
|
103
|
+
* Excon: hash query handling fix (thanks @tlunter!): #161, #163
|
104
|
+
* Data collection methods should ensure hash values are always returned: #162
|
105
|
+
* Expanded Init reporting: #159
|
106
|
+
|
107
|
+
Pushed to Rubygems:
|
108
|
+
|
109
|
+
- https://rubygems.org/gems/appoptics/versions/3.5.1
|
110
|
+
- https://rubygems.org/gems/appoptics/versions/3.5.1-java
|
111
|
+
|
112
|
+
# appoptics 3.5.0 (01/31/2016)
|
113
|
+
|
114
|
+
This minor release includes the following new feature:
|
115
|
+
|
116
|
+
* New [bunny](https://github.com/ruby-amqp/bunny) (Rabbitmq) client instrumentation: #129
|
117
|
+
|
118
|
+
Pushed to Rubygems:
|
119
|
+
|
120
|
+
- https://rubygems.org/gems/appoptics/versions/3.5.0
|
121
|
+
- https://rubygems.org/gems/appoptics/versions/3.5.0-java
|
122
|
+
|
123
|
+
# appoptics 3.4.2 (01/25/2016)
|
124
|
+
|
125
|
+
This patch release includes the following fixes:
|
126
|
+
|
127
|
+
* bson dependency breaks Ruby 1.8.7 install: #158
|
128
|
+
* Resque worker automatic tracing: #157
|
129
|
+
|
130
|
+
Pushed to Rubygems:
|
131
|
+
|
132
|
+
- https://rubygems.org/gems/appoptics/versions/3.4.2
|
133
|
+
- https://rubygems.org/gems/appoptics/versions/3.4.2-java
|
134
|
+
|
135
|
+
# appoptics 3.4.1 (01/05/2016)
|
136
|
+
|
137
|
+
This patch release includes the following fixes:
|
138
|
+
|
139
|
+
* Instrumentation updates to support Grape version 0.14: #153
|
140
|
+
* Fix Rack layer AVW header handling and analysis: #154
|
141
|
+
* Sidekiq workers are now auto instrumented: #155
|
142
|
+
* Fix ActiveRecord reporting invalid SQL Flavor: #156
|
143
|
+
|
144
|
+
Pushed to Rubygems:
|
145
|
+
|
146
|
+
- https://rubygems.org/gems/appoptics/versions/3.4.1
|
147
|
+
- https://rubygems.org/gems/appoptics/versions/3.4.1-java
|
148
|
+
|
149
|
+
# appoptics 3.4.0 (12/29/2015)
|
150
|
+
|
151
|
+
This minor release includes the following features & fixes:
|
152
|
+
|
153
|
+
* New [DelayedJob](https://github.com/collectiveidea/delayed_job/) instrumentation: #151
|
154
|
+
* Limit BSON gem dependency to < 4.0: #152
|
155
|
+
* Code refactoring & improvements: #148
|
156
|
+
|
157
|
+
Pushed to Rubygems:
|
158
|
+
|
159
|
+
- https://rubygems.org/gems/appoptics/versions/3.4.0
|
160
|
+
- https://rubygems.org/gems/appoptics/versions/3.4.0-java
|
161
|
+
|
162
|
+
# appoptics 3.3.3 (11/11/2015)
|
163
|
+
|
164
|
+
This patch release includes the following fixes:
|
165
|
+
|
166
|
+
* Sidekiq instrumentation: don't carry context between enqueue and job run: #150
|
167
|
+
* Sidekiq instrumentation: Update KV reporting to follow APPOPTICS specs: #150
|
168
|
+
* Resque instrumentation: Update instrumentation to follow APPOPTICS specs: #146
|
169
|
+
* Resque instrumentation: `:link_workers` option deprecated: #146
|
170
|
+
* [JRuby 9000](http://jruby.org/) validated: Add JRuby 9000 to test suite: #149
|
171
|
+
|
172
|
+
Pushed to Rubygems:
|
173
|
+
|
174
|
+
- https://rubygems.org/gems/appoptics/versions/3.3.2
|
175
|
+
- https://rubygems.org/gems/appoptics/versions/3.3.2-java
|
176
|
+
|
177
|
+
# appoptics 3.3.1 (10/21/2015)
|
178
|
+
|
179
|
+
This patch release includes the following fixes:
|
180
|
+
|
181
|
+
* Fix sample rate handling under JRuby: #141
|
182
|
+
* Remove `:action_blacklist`: #145
|
183
|
+
* Update JRuby Instrumentation tests to use New JOboe Test Reporter #147
|
184
|
+
|
185
|
+
Pushed to Rubygems:
|
186
|
+
|
187
|
+
- https://rubygems.org/gems/appoptics/versions/3.3.1
|
188
|
+
- https://rubygems.org/gems/appoptics/versions/3.3.1-java
|
189
|
+
|
190
|
+
# appoptics 3.3.0 (10/07/2015)
|
191
|
+
|
192
|
+
This patch release includes the following fixes:
|
193
|
+
|
194
|
+
* New [Sidekiq](http://sidekiq.org/) instrumentation: #138, #139
|
195
|
+
* Require `Set` before referencing it: #143
|
196
|
+
* Add `:action_blacklist` deprecation warning: #137
|
197
|
+
* Add a way to restart the reporter via `AppOptics::Reporter.restart`: #140
|
198
|
+
|
199
|
+
Pushed to Rubygems:
|
200
|
+
|
201
|
+
- https://rubygems.org/gems/appoptics/versions/3.3.0
|
202
|
+
- https://rubygems.org/gems/appoptics/versions/3.3.0-java
|
203
|
+
|
204
|
+
# appoptics 3.2.1 (08/20/2015)
|
205
|
+
|
206
|
+
This minor release adds the following:
|
207
|
+
|
208
|
+
* New and improved method profiling: #135
|
209
|
+
* Fix URL Query config: #136
|
210
|
+
|
211
|
+
Pushed to Rubygems:
|
212
|
+
|
213
|
+
- https://rubygems.org/gems/appoptics/versions/3.2.1
|
214
|
+
- https://rubygems.org/gems/appoptics/versions/3.2.1-java
|
215
|
+
|
216
|
+
# appoptics 3.1.0 (08/03/2015)
|
217
|
+
|
218
|
+
This minor release adds the following:
|
219
|
+
|
220
|
+
* New Curb HTTP client instrumentation: #132
|
221
|
+
|
222
|
+
Pushed to Rubygems:
|
223
|
+
|
224
|
+
- https://rubygems.org/gems/appoptics/versions/3.1.0
|
225
|
+
- https://rubygems.org/gems/appoptics/versions/3.1.0-java
|
226
|
+
|
227
|
+
# appoptics 3.0.5 (07/20/2015)
|
228
|
+
|
229
|
+
This patch release includes the following fixes:
|
230
|
+
|
231
|
+
* Fix "undefined method" in httpclient instrumentation: #134
|
232
|
+
* Fix Redis set operation to work with array versus hash: #133
|
233
|
+
|
234
|
+
Pushed to Rubygems:
|
235
|
+
|
236
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.5
|
237
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.5-java
|
238
|
+
|
239
|
+
# appoptics 3.0.4 (07/08/2015)
|
240
|
+
|
241
|
+
This patch release includes the following fixes:
|
242
|
+
|
243
|
+
* Rails generator broken after gem rename: #128
|
244
|
+
* Allow custom params for logging exceptions: #130 (thanks @sliuu !)
|
245
|
+
* SQL Sanitize missing integers for ActiveRecord adapters: #131
|
246
|
+
|
247
|
+
Pushed to Rubygems:
|
248
|
+
|
249
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.4
|
250
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.4-java
|
251
|
+
|
252
|
+
# appoptics 3.0.3 (06/26/2015)
|
253
|
+
|
254
|
+
This patch release includes the following fixes:
|
255
|
+
|
256
|
+
* Fix missing Controller/Action reporting for Rails 4 and add Rails test coverage: #123
|
257
|
+
* Fix Moped update default parameter: #127 (thanks to @maxjacobson, @lifegiver, @abmcdubb and @mradmacher!)
|
258
|
+
|
259
|
+
Pushed to Rubygems:
|
260
|
+
|
261
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.3
|
262
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.3-java
|
263
|
+
|
264
|
+
# appoptics 3.0.2 (06/24/2015)
|
265
|
+
|
266
|
+
This patch release includes the following fixes:
|
267
|
+
|
268
|
+
* Add alternate module capitalization for easiness: #126
|
269
|
+
* Cassandra instrumentation loading for wrong client: #125
|
270
|
+
* Fix broken no-op mode when missing host libs: #124
|
271
|
+
|
272
|
+
Pushed to Rubygems:
|
273
|
+
|
274
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.2
|
275
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.2-java
|
276
|
+
|
277
|
+
# appoptics 3.0.1 (06/04/2015)
|
278
|
+
|
279
|
+
This patch release includes the following fix:
|
280
|
+
|
281
|
+
* Add missing backcompat support bits: #122
|
282
|
+
|
283
|
+
Pushed to Rubygems:
|
284
|
+
|
285
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.1
|
286
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.1-java
|
287
|
+
|
288
|
+
# appoptics 3.0.0 (05/28/2015)
|
289
|
+
|
290
|
+
The oboe gem has been renamed to appoptics. The final oboe
|
291
|
+
gem (2.7.19) has a post-install deprecation warning and will
|
292
|
+
not have anymore updates.
|
293
|
+
|
294
|
+
All development going forward will be done on this appoptics gem.
|
295
|
+
|
296
|
+
As a first release, this is simply a renamed version of oboe gem 2.7.19.
|
297
|
+
|
298
|
+
It contains no bug fixes or new features.
|
299
|
+
|
300
|
+
Pushed to Rubygems:
|
301
|
+
|
302
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.0
|
303
|
+
- https://rubygems.org/gems/appoptics/versions/3.0.0-java
|
304
|
+
|
305
|
+
# oboe 2.7.19
|
306
|
+
|
307
|
+
__Note that this will be the last release for the oboe gem. The gem
|
308
|
+
will be renamed to _appoptics_ and all future updates will be to that
|
309
|
+
other gem.__
|
310
|
+
|
311
|
+
This version will show a post-install warning message stating this. A
|
312
|
+
final version of this gem will be released with only a deprecation
|
313
|
+
warning.
|
314
|
+
|
315
|
+
This patch release includes the following fix:
|
316
|
+
|
317
|
+
* Report TraceMode in __Init: #120
|
318
|
+
* Add RemoteHost reporting to Dalli Instrumentation: #119
|
319
|
+
|
320
|
+
Pushed to Rubygems:
|
321
|
+
|
322
|
+
- https://rubygems.org/gems/oboe/versions/2.7.19
|
323
|
+
- https://rubygems.org/gems/oboe/versions/2.7.19-java
|
324
|
+
|
325
|
+
# oboe 2.7.18
|
326
|
+
|
327
|
+
This patch release includes the following fix:
|
328
|
+
|
329
|
+
* For custom ActionView renderers, properly accept and pass on blocks: #118
|
330
|
+
|
331
|
+
Pushed to Rubygems:
|
332
|
+
|
333
|
+
- https://rubygems.org/gems/oboe/versions/2.7.18
|
334
|
+
- https://rubygems.org/gems/oboe/versions/2.7.18-java
|
335
|
+
|
336
|
+
# oboe 2.7.17.1
|
337
|
+
|
338
|
+
This patch release includes:
|
339
|
+
|
340
|
+
* New config option to optionally not report URL query parameters: #116
|
341
|
+
* New HTTPClient instrumentation: #115
|
342
|
+
|
343
|
+
Pushed to Rubygems:
|
344
|
+
|
345
|
+
- https://rubygems.org/gems/oboe/versions/2.7.17.1
|
346
|
+
- https://rubygems.org/gems/oboe/versions/2.7.17.1-java
|
347
|
+
|
348
|
+
# oboe 2.7.16.1
|
349
|
+
|
350
|
+
This patch release includes:
|
351
|
+
|
352
|
+
* New rest-client instrumentation: #109
|
353
|
+
* New excon instrumentation: #114
|
354
|
+
* Fix `uninitialized constant` on unsupported platforms: #113
|
355
|
+
|
356
|
+
Pushed to Rubygems:
|
357
|
+
|
358
|
+
- https://rubygems.org/gems/oboe/versions/2.7.16.1
|
359
|
+
- https://rubygems.org/gems/oboe/versions/2.7.16.1-java
|
360
|
+
|
361
|
+
# oboe 2.7.15.1
|
362
|
+
|
363
|
+
This patch release includes:
|
364
|
+
|
365
|
+
* Rails Instrumentation should respect top-level rescue handlers: #111
|
366
|
+
|
367
|
+
Pushed to Rubygems:
|
368
|
+
|
369
|
+
- https://rubygems.org/gems/oboe/versions/2.7.15.1
|
370
|
+
- https://rubygems.org/gems/oboe/versions/2.7.15/1-java
|
371
|
+
|
372
|
+
# oboe 2.7.14.1
|
373
|
+
|
374
|
+
This patch release includes:
|
375
|
+
|
376
|
+
* Fixed support for Puma on Heroku: #108
|
377
|
+
|
378
|
+
Pushed to Rubygems:
|
379
|
+
|
380
|
+
- https://rubygems.org/gems/oboe/versions/2.7.14.1
|
381
|
+
- https://rubygems.org/gems/oboe/versions/2.7.14/1-java
|
382
|
+
|
383
|
+
# oboe 2.7.13.3
|
384
|
+
|
385
|
+
This build release includes:
|
386
|
+
|
387
|
+
* Protect against unknown data type reporting: #106
|
388
|
+
|
389
|
+
Pushed to Rubygems:
|
390
|
+
|
391
|
+
- https://rubygems.org/gems/oboe/versions/2.7.13.3
|
392
|
+
- https://rubygems.org/gems/oboe/versions/2.7.13.3-java
|
393
|
+
|
394
|
+
# oboe 2.7.12.1
|
395
|
+
|
396
|
+
This patch release includes:
|
397
|
+
|
398
|
+
* Report values using BSON data types: #103
|
399
|
+
* Avoid double tracing rack layer for nested apps: #104
|
400
|
+
|
401
|
+
Pushed to Rubygems:
|
402
|
+
|
403
|
+
- https://rubygems.org/gems/oboe/versions/2.7.12.1
|
404
|
+
- https://rubygems.org/gems/oboe/versions/2.7.12.1-java
|
405
|
+
|
406
|
+
# oboe 2.7.11.1
|
407
|
+
|
408
|
+
This patch release includes:
|
409
|
+
|
410
|
+
* Grape instrumentation fixes and improvements: #102
|
411
|
+
* Report Sequel and Typhoeus versions in __Init: #101
|
412
|
+
|
413
|
+
Pushed to Rubygems:
|
414
|
+
|
415
|
+
- https://rubygems.org/gems/oboe/versions/2.7.11.1
|
416
|
+
- https://rubygems.org/gems/oboe/versions/2.7.11.1-java
|
417
|
+
|
418
|
+
# oboe 2.7.10.1
|
419
|
+
|
420
|
+
This patch release includes:
|
421
|
+
|
422
|
+
* Add the ability to configure the do not trace list: #100
|
423
|
+
|
424
|
+
Pushed to Rubygems:
|
425
|
+
|
426
|
+
- https://rubygems.org/gems/oboe/versions/2.7.10.1
|
427
|
+
- https://rubygems.org/gems/oboe/versions/2.7.10.1-java
|
428
|
+
|
429
|
+
# oboe 2.7.9.6
|
430
|
+
|
431
|
+
This patch release includes:
|
432
|
+
|
433
|
+
* Better, faster, stronger Rack instrumentation: #99
|
434
|
+
* A Typhoeus instrumentation fix for cross-app tracing: #97
|
435
|
+
|
436
|
+
Pushed to Rubygems:
|
437
|
+
|
438
|
+
- https://rubygems.org/gems/oboe/versions/2.7.9.6
|
439
|
+
- https://rubygems.org/gems/oboe/versions/2.7.9.6-java
|
440
|
+
|
441
|
+
# oboe 2.7.8.1
|
442
|
+
|
443
|
+
This patch release includes:
|
444
|
+
|
445
|
+
* Improved sampling management and reporting
|
446
|
+
|
447
|
+
Pushed to Rubygems:
|
448
|
+
|
449
|
+
- https://rubygems.org/gems/oboe/versions/2.7.8.1
|
450
|
+
- https://rubygems.org/gems/oboe/versions/2.7.8.1-java
|
451
|
+
|
452
|
+
|
453
|
+
# oboe 2.7.7.1
|
454
|
+
|
455
|
+
This patch release includes:
|
456
|
+
|
457
|
+
* Add support and instrumentation for Sequel: #91
|
458
|
+
|
459
|
+
Pushed to Rubygems:
|
460
|
+
|
461
|
+
- https://rubygems.org/gems/oboe/versions/2.7.7.1
|
462
|
+
- https://rubygems.org/gems/oboe/versions/2.7.7.1-java
|
463
|
+
|
464
|
+
# oboe 2.7.6.2
|
465
|
+
|
466
|
+
This patch release includes:
|
467
|
+
|
468
|
+
* Fixed metrics when hosting a JRuby application under a Java webserver such as Tomcat: #94
|
469
|
+
* Fix for moped aggregate calls: #95
|
470
|
+
|
471
|
+
Pushed to Rubygems:
|
472
|
+
|
473
|
+
- https://rubygems.org/gems/oboe/versions/2.7.6.2
|
474
|
+
- https://rubygems.org/gems/oboe/versions/2.7.6.2-java
|
475
|
+
|
476
|
+
# oboe 2.7.5.1 (11/20/2014)
|
477
|
+
|
478
|
+
This patch release includes:
|
479
|
+
|
480
|
+
* New [Typhoeus](https://github.com/typhoeus/typhoeus) instrumentation: #90
|
481
|
+
* JRuby: Better Handling of Agent JSON Parsing Errors: #89
|
482
|
+
* Faraday doesn't Log like the others; Fixup Verbose Logging: #79
|
483
|
+
* Add DB Adapters to __Init reporting: #83
|
484
|
+
* Extended Typhoeus tests: #92
|
485
|
+
|
486
|
+
Pushed to Rubygems:
|
487
|
+
|
488
|
+
- https://rubygems.org/gems/oboe/versions/2.7.5.1
|
489
|
+
- https://rubygems.org/gems/oboe/versions/2.7.5.1-java
|
490
|
+
|
491
|
+
# oboe 2.7.4.1 (10/26/2014)
|
492
|
+
|
493
|
+
This patch release includes:
|
494
|
+
|
495
|
+
* Make Oboe::API available even when liboboe.so is not #81 (thanks Cannon!)
|
496
|
+
* Add OS and Oboe::Config info to support report #80
|
497
|
+
|
498
|
+
Pushed to Rubygems:
|
499
|
+
|
500
|
+
- https://rubygems.org/gems/oboe/versions/2.7.4.1
|
501
|
+
- https://rubygems.org/gems/oboe/versions/2.7.4.1-java
|
502
|
+
|
503
|
+
# oboe 2.7.3.1 (10/15/2014)
|
504
|
+
|
505
|
+
This patch release includes:
|
506
|
+
|
507
|
+
* Fix require statements under certain variations of REE-1.8.7: #78 (thanks @madrobby)
|
508
|
+
* Faraday instrumentation fails to capture and pass params update block: #79
|
509
|
+
* Add method to log environment details for support investigations (`Oboe.support_ report`): #77
|
510
|
+
|
511
|
+
Pushed to Rubygems:
|
512
|
+
|
513
|
+
- https://rubygems.org/gems/oboe/versions/2.7.3.1
|
514
|
+
- https://rubygems.org/gems/oboe/versions/2.7.3.1-java
|
515
|
+
|
516
|
+
# oboe 2.7.2.2 (09/26/2014)
|
517
|
+
|
518
|
+
This patch release includes:
|
519
|
+
|
520
|
+
* New [Faraday](https://github.com/lostisland/faraday) instrumentation: https://github.com/appneta/oboe-ruby/pull/68
|
521
|
+
* Auto-initialize instrumentation when no framework detected: https://github.com/appneta/oboe-ruby/pull/76
|
522
|
+
* Willingly ignore appoptics missing libraries warning: https://github.com/appneta/oboe-ruby/pull/75 (thanks @theist!)
|
523
|
+
|
524
|
+
Pushed to Rubygems:
|
525
|
+
|
526
|
+
https://rubygems.org/gems/oboe/versions/2.7.2.2
|
527
|
+
https://rubygems.org/gems/oboe/versions/2.7.2.2-java
|
528
|
+
|
529
|
+
# oboe 2.7.1.7 (09/08/2014)
|
530
|
+
|
531
|
+
This patch release includes:
|
532
|
+
|
533
|
+
* Fixed load stack trace when missing AppOptics base libraries: [#72](https://github.com/appneta/oboe-ruby/pull/72) - thanks @theist!
|
534
|
+
* Beta `em-http-request` instrumentation: [#60](https://github.com/appneta/oboe-ruby/pull/60)/[#73](https://github.com/appneta/oboe-ruby/pull/73) - Thanks @diogobenica!
|
535
|
+
* Improved loading when on Heroku with oboe-heroku gem
|
536
|
+
|
537
|
+
Pushed to Rubygems:
|
538
|
+
|
539
|
+
- https://rubygems.org/gems/oboe/versions/2.7.1.7
|
540
|
+
- https://rubygems.org/gems/oboe/versions/2.7.1.7-java
|
541
|
+
|
542
|
+
# oboe 2.7.0.3 (08/19/2014)
|
543
|
+
|
544
|
+
This minor release includes:
|
545
|
+
|
546
|
+
* [JRuby instrumentation](https://github.com/appneta/oboe-ruby/pull/51) is back and better than ever.
|
547
|
+
* [Updated moped instrumentation](https://github.com/appneta/oboe-ruby/pull/63) to support moped v2 changes
|
548
|
+
* Simplify start_trace by setting a default param: [#67](https://github.com/appneta/oboe-ruby/pull/67)
|
549
|
+
|
550
|
+
This release also includes [our first pure java platform Ruby gem](https://rubygems.org/gems/oboe/versions/2.7.0.3-java) (no c-extension for JRuby yay!).
|
551
|
+
|
552
|
+
Pushed to Rubygems:
|
553
|
+
|
554
|
+
- https://rubygems.org/gems/oboe/versions/2.7.0.3
|
555
|
+
- https://rubygems.org/gems/oboe/versions/2.7.0.3-java
|
556
|
+
|
557
|
+
Related: http://www.appneta.com/blog/jruby-whole-java-world/
|
558
|
+
|
559
|
+
# oboe 2.6.8 (07/31/2014)
|
560
|
+
|
561
|
+
This patch release includes:
|
562
|
+
|
563
|
+
* Fix [instrumentation load for Padrino in test environments](https://github.com/appneta/oboe-ruby/pull/65)
|
564
|
+
* [Add delay](https://github.com/appneta/oboe-ruby/pull/66) in test suite to allow downloading of sample rate info
|
565
|
+
|
566
|
+
Pushed to Rubygems: https://rubygems.org/gems/oboe/versions/2.6.8
|
567
|
+
|
568
|
+
# oboe 2.6.7.1 (07/23/2014)
|
569
|
+
|
570
|
+
This patch release includes better error handling, API clean-up and RUM template improvements.
|
571
|
+
|
572
|
+
* [Add RUM helpers](https://github.com/appneta/oboe-ruby/pull/56) for Sinatra and Padrino stacks. Thanks @tlunter!
|
573
|
+
* Prefer [StandardError over Exception](https://github.com/appneta/oboe-ruby/pull/59) for rescue blocks that we handle directly
|
574
|
+
* [Clean up Oboe logging API](https://github.com/appneta/oboe-ruby/pull/58): Oboe.log, Oboe::Context.log and Oboe::API.log redundancy
|
575
|
+
|
576
|
+
# oboe 2.6.6.1 (06/16/2014)
|
577
|
+
|
578
|
+
This patch release adds new instrumentation and a couple fixes:
|
579
|
+
|
580
|
+
* [Add instrumentation support](https://github.com/appneta/oboe-ruby/pull/37) for [Grape API Micro Framework](http://intridea.github.io/grape/) (thanks @tlunter!)
|
581
|
+
* Important [Mongo find operation with block fix](https://github.com/appneta/oboe-ruby/pull/53) (thanks @rafaelfranca!)
|
582
|
+
* Better and more [data independent tests](https://github.com/appneta/oboe-ruby/pull/52) for Travis
|
583
|
+
|
584
|
+
# oboe 2.6.5.5 (06/02/2014)
|
585
|
+
|
586
|
+
This patch release improves [instrumentation for Mongo](https://github.com/appneta/oboe-ruby/pull/48) version >= 1.10 and fixes AppOptics [sample rate reporting](https://github.com/appneta/oboe-ruby/pull/50).
|
587
|
+
|
588
|
+
# oboe 2.6.4.1 (04/30/2014)
|
589
|
+
|
590
|
+
This patch release adds detection and support for Redhat [OpenShift](https://www.openshift.com/). See our OpenShift [AppOptics cartridge](https://github.com/appneta/openshift-cartridge-appoptics) for base libraries before using this gem on OpenShift.
|
591
|
+
|
592
|
+
# oboe 2.6.3.0 (04/07/2014)
|
593
|
+
|
594
|
+
This patch releases fixes a number of smaller issues:
|
595
|
+
|
596
|
+
* the gem will no longer start traces on static assets (https://github.com/appneta/oboe-ruby/pull/31)
|
597
|
+
* fix occasionally broken `profile_name` values when using [custom method tracing](https://github.com/appneta/oboe-ruby#tracing-methods)
|
598
|
+
* fix for incorrectly starting traces when in `through` tracing mode under certain circumstances
|
599
|
+
* Expand the test suite to validate sample rates and tracing modes (https://github.com/appneta/oboe-ruby/pull/8)
|
600
|
+
|
601
|
+
# oboe 2.6.2.0 (03/24/2014)
|
602
|
+
|
603
|
+
* This patch release improves webserver detection on Heroku and adds in some c extension protections. A oboe-heroku gem release will follow this release.
|
604
|
+
|
605
|
+
# oboe 2.6.1.0 (03/12/2014)
|
606
|
+
|
607
|
+
This is a patch release to address "Unsupported digest algorithm (SHA256)" occurring under certain cases on Heroku. A oboe-heroku gem release will follow this release.
|
608
|
+
|
609
|
+
* Support delayed Reporter Initialization for Forking Webservers
|
610
|
+
* README syntax fixes
|
611
|
+
|
612
|
+
# oboe 2.5.0.7 (02/2013/2014)
|
613
|
+
|
614
|
+
* Added new Redis redis-rb gem (>= 3.0.0) instrumentation
|
615
|
+
* Fix a SampleSource bitmask high bit issue
|
616
|
+
* Expanded __Init reports
|
617
|
+
* Fix Ruby standalone returning nil X-Trace headers (1B000000...)
|
618
|
+
* Test against Ruby 2.1.0 on TravisCI
|
619
|
+
* Fix errant Oboe::Config warning
|
620
|
+
|
621
|
+
# oboe 2.4.0.1 (01/12/2013)
|
622
|
+
|
623
|
+
* Report SampleRate & SampleSource per updated SWIG API
|
624
|
+
* Change OboeHeroku __Init Key
|
625
|
+
* Remove oboe_fu artifacts
|
626
|
+
* CodeClimate Initiated improvements
|
627
|
+
* Remove SSL connection requirement from Net::HTTP tests
|
628
|
+
* oboe.gemspec doesn't specify Ruby 1.8 json dependency
|
629
|
+
* add config to blacklist tracing of actions (thanks @nathantsoi!)
|
630
|
+
* Report the application server used
|
631
|
+
* Support Oboe::Config.merge! and warn on non-existent (thanks @adamjt!)
|
632
|
+
|
633
|
+
# oboe 2.3.4.1 (11/21/2013)
|
634
|
+
|
635
|
+
* Stacks that use a caching system like Varnish could see corrupted traces; fixed.
|
636
|
+
|
637
|
+
# oboe 2.3.3.7 (11/06/2013)
|
638
|
+
|
639
|
+
* Rename the _Init layer to "rack"
|
640
|
+
* Decode URLS when reporting them
|
641
|
+
* Resque layer naming split into 1) client queuing of a job: 'resque-client', 2) Resque worker running a job: 'resque-worker'
|
642
|
+
* Fix for an extension load error and some refactoring of functionality into a base module (OboeBase)
|
643
|
+
* Improved and more resilient method profiling
|
644
|
+
* Further refactoring for Ruby 2.0 support
|
645
|
+
* Track the version of the instrumentation installed
|
646
|
+
|
647
|
+
# oboe 2.3.2 (10/22/2013)
|
648
|
+
|
649
|
+
* Backtrace collection can now be configured to skip certain components if a lighter-weight trace is desired
|
650
|
+
* On MRI Ruby the hostname of the Tracelyzer is now configurable via Oboe::Config[:reporter_host] (default is localhost)
|
651
|
+
* Fix to MongoDb query identification
|
652
|
+
* Event building in the Rack layer optimized
|
653
|
+
* Renamed "sampling_rate" to be "sample_rate" for consistency
|
654
|
+
* More tests added and documentation in anticipation of our Ruby open-source initiative
|
655
|
+
|
656
|
+
# oboe 2.2.6 (09/27/2013)
|
657
|
+
|
658
|
+
* Query Privacy now fully supported; can configure the app to not send SQL parameters if needed
|
659
|
+
* Configuring the local sample rate now supports 1e6 notation
|
660
|
+
* Improved log messaging if a gem dependency is missing
|
661
|
+
* Now reporting HTTPStatus on http client calls
|
662
|
+
* Heroku - the start time when a request hits the load balancer now captured
|
663
|
+
|
664
|
+
# oboe 2.2.0 (09/12/2013)
|
665
|
+
|
666
|
+
* Initial support for Rails 4
|
667
|
+
* Various internal reporting fixes and improvements
|
668
|
+
* Fix for auto sampling rate
|
669
|
+
|
670
|
+
# oboe 2.1.4 (08/01/2013)
|
671
|
+
|
672
|
+
* Integration support for AppView Web
|
673
|
+
|
674
|
+
# oboe 2.1.3 (07/16/2013)
|
675
|
+
|
676
|
+
* Allow _Access Key_ assignment via Environment variable: APPOPTICS_CUUID
|
677
|
+
|
678
|
+
# oboe 2.1.1
|
679
|
+
|
680
|
+
* The gem now logs via a standard Ruby logger: Oboe.logger
|
681
|
+
* Add in rspec tests
|
682
|
+
* JRuby now supports Smart Tracing
|
683
|
+
* Fixed an invalid Profile name in ActionView Partial tracing
|
684
|
+
|
685
|
+
# oboe 1.4.2.2
|
686
|
+
|
687
|
+
* Rack - add handling for potential nil result
|
688
|
+
|
689
|
+
# oboe 1.4.2
|
690
|
+
|
691
|
+
* Cassandra - ensure all keys are captured when reporting exceptions
|
692
|
+
* JRuby detection fix
|
693
|
+
|
694
|
+
# oboe 1.4.1.2
|
695
|
+
|
696
|
+
* HTTP keys now captured at Rack level instead of Rails
|
697
|
+
* RUM templates are now pre-loaded
|
698
|
+
* Improved layer agnostic info event reporting
|
699
|
+
|
700
|
+
# oboe 1.4.0.2
|
701
|
+
|
702
|
+
* Resque support
|
703
|
+
* Fix Rails 2 bug where SET and SHOW could result in recursive calls
|
704
|
+
* Memcache - multi-get calls now report a total for number of keys and number
|
705
|
+
of hits
|
706
|
+
* Configuration - added ability to identify components to skip from
|
707
|
+
instrumentation
|
708
|
+
* Configuration - sending Resque parameters can be skipped if privacy an issue.
|
709
|
+
|
710
|
+
# oboe 1.3.9.1
|
711
|
+
|
712
|
+
* Add in Rack instrumentation
|
713
|
+
* Fix Function profiling of class methods bug
|
714
|
+
* Add backtraces to Cassandra and Mongo operations
|
715
|
+
* Rename the "render" layer to "actionview"
|
716
|
+
|
717
|
+
# oboe 1.3.8
|
718
|
+
|
719
|
+
* More comprehensive JRuby support
|
720
|
+
|
721
|
+
# oboe 1.3.7
|
722
|
+
|
723
|
+
* Added Moped driver instrumentation (Mongo/Mongoid)
|
724
|
+
|
725
|
+
# oboe 1.3.6
|
726
|
+
|
727
|
+
* Added Rails ActionView partial and collection rendering instrumentation
|
728
|
+
|
729
|
+
# oboe 1.3.5
|
730
|
+
|
731
|
+
* Added cassandra instrumentation
|
732
|
+
|
733
|
+
# oboe 1.3.4
|
734
|
+
|
735
|
+
* Added mongo-ruby-driver support
|
736
|
+
|
737
|
+
# oboe 1.3.3
|
738
|
+
|
739
|
+
* Updated RUM instrumentation templates
|
740
|
+
|
741
|
+
# oboe 1.3.2
|
742
|
+
|
743
|
+
* Fix a case when the RUM instrumentation header/footer methods would not
|
744
|
+
return JS output, depending on how the way they were called from HAML.
|
745
|
+
|
746
|
+
# oboe 1.3.1
|
747
|
+
|
748
|
+
* Support for RUM instrumentation.
|
749
|
+
Fix for certain cases where exceptions were not properly propagated up to Rails
|
750
|
+
error handlers.
|
751
|
+
|
752
|
+
# oboe 1.3.0
|
753
|
+
|
754
|
+
* The oboe and oboe_fu gems have been merged to simplify installation. The
|
755
|
+
final oboe_fu gem (1.3.0) simply calls "require 'oboe'" now for backwards
|
756
|
+
compatibility.
|
757
|
+
* Please note our updated installation instructions for the new location of
|
758
|
+
Ruby oboe API methods.
|
759
|
+
* Our gem now successfully installs even if your platform does not have our
|
760
|
+
base packages (liboboe) installed, so you can deploy to environments with or
|
761
|
+
without AppOptics support.
|
762
|
+
|
763
|
+
# oboe_fu 1.2.1
|
764
|
+
|
765
|
+
* Support for instrumenting the dalli module.
|
766
|
+
|
767
|
+
# oboe_fu 1.2.0
|
768
|
+
|
769
|
+
* Support for Rails 2.3, 3.0, 3.1, and 3.2.
|