appoptics_apm 4.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (226) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +43 -0
  3. data/.dockerignore +5 -0
  4. data/.gitignore +23 -0
  5. data/.rubocop.yml +5 -0
  6. data/.travis.yml +82 -0
  7. data/CHANGELOG.md +769 -0
  8. data/CONFIG.md +33 -0
  9. data/Dockerfile +41 -0
  10. data/Dockerfile_test +66 -0
  11. data/Gemfile +41 -0
  12. data/LICENSE +193 -0
  13. data/README.md +351 -0
  14. data/Rakefile +202 -0
  15. data/Vagrantfile +67 -0
  16. data/appoptics_apm.gemspec +55 -0
  17. data/build_gems.sh +15 -0
  18. data/docker-compose.yml +73 -0
  19. data/examples/DNT.md +35 -0
  20. data/examples/carrying_context.rb +220 -0
  21. data/examples/instrumenting_metal_controller.rb +8 -0
  22. data/examples/puma_on_heroku_config.rb +17 -0
  23. data/examples/tracing_async_threads.rb +124 -0
  24. data/examples/tracing_background_jobs.rb +53 -0
  25. data/examples/tracing_forked_processes.rb +99 -0
  26. data/examples/unicorn_on_heroku_config.rb +28 -0
  27. data/ext/oboe_metal/extconf.rb +54 -0
  28. data/ext/oboe_metal/lib/.keep +0 -0
  29. data/ext/oboe_metal/lib/liboboe-1.0.so.0.0.0 +0 -0
  30. data/ext/oboe_metal/noop/noop.c +7 -0
  31. data/ext/oboe_metal/src/VERSION +1 -0
  32. data/ext/oboe_metal/src/bson/bson.h +221 -0
  33. data/ext/oboe_metal/src/bson/platform_hacks.h +91 -0
  34. data/ext/oboe_metal/src/oboe.h +883 -0
  35. data/ext/oboe_metal/src/oboe.hpp +793 -0
  36. data/ext/oboe_metal/src/oboe_debug.h +50 -0
  37. data/ext/oboe_metal/src/oboe_wrap.cxx +6088 -0
  38. data/ext/oboe_metal/tests/test.rb +11 -0
  39. data/gemfiles/delayed_job.gemfile +36 -0
  40. data/gemfiles/frameworks.gemfile +44 -0
  41. data/gemfiles/instrumentation_mocked.gemfile +29 -0
  42. data/gemfiles/libraries.gemfile +85 -0
  43. data/gemfiles/rails23.gemfile +39 -0
  44. data/gemfiles/rails30.gemfile +42 -0
  45. data/gemfiles/rails31.gemfile +44 -0
  46. data/gemfiles/rails32.gemfile +54 -0
  47. data/gemfiles/rails40.gemfile +27 -0
  48. data/gemfiles/rails41.gemfile +27 -0
  49. data/gemfiles/rails42.gemfile +35 -0
  50. data/gemfiles/rails50.gemfile +44 -0
  51. data/gemfiles/rails51.gemfile +44 -0
  52. data/get_version.rb +5 -0
  53. data/init.rb +4 -0
  54. data/lib/appoptics_apm/api/layerinit.rb +39 -0
  55. data/lib/appoptics_apm/api/logging.rb +359 -0
  56. data/lib/appoptics_apm/api/memcache.rb +34 -0
  57. data/lib/appoptics_apm/api/profiling.rb +201 -0
  58. data/lib/appoptics_apm/api/tracing.rb +152 -0
  59. data/lib/appoptics_apm/api/util.rb +128 -0
  60. data/lib/appoptics_apm/api.rb +18 -0
  61. data/lib/appoptics_apm/base.rb +252 -0
  62. data/lib/appoptics_apm/config.rb +281 -0
  63. data/lib/appoptics_apm/frameworks/grape.rb +93 -0
  64. data/lib/appoptics_apm/frameworks/padrino/templates.rb +58 -0
  65. data/lib/appoptics_apm/frameworks/padrino.rb +52 -0
  66. data/lib/appoptics_apm/frameworks/rails/inst/action_controller.rb +106 -0
  67. data/lib/appoptics_apm/frameworks/rails/inst/action_controller2.rb +61 -0
  68. data/lib/appoptics_apm/frameworks/rails/inst/action_controller3.rb +58 -0
  69. data/lib/appoptics_apm/frameworks/rails/inst/action_controller4.rb +48 -0
  70. data/lib/appoptics_apm/frameworks/rails/inst/action_controller5.rb +50 -0
  71. data/lib/appoptics_apm/frameworks/rails/inst/action_controller_api.rb +50 -0
  72. data/lib/appoptics_apm/frameworks/rails/inst/action_view.rb +58 -0
  73. data/lib/appoptics_apm/frameworks/rails/inst/action_view_2x.rb +56 -0
  74. data/lib/appoptics_apm/frameworks/rails/inst/action_view_30.rb +50 -0
  75. data/lib/appoptics_apm/frameworks/rails/inst/active_record.rb +27 -0
  76. data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/mysql.rb +43 -0
  77. data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/mysql2.rb +28 -0
  78. data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/postgresql.rb +30 -0
  79. data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/utils.rb +120 -0
  80. data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/utils5x.rb +101 -0
  81. data/lib/appoptics_apm/frameworks/rails.rb +116 -0
  82. data/lib/appoptics_apm/frameworks/sinatra/templates.rb +56 -0
  83. data/lib/appoptics_apm/frameworks/sinatra.rb +71 -0
  84. data/lib/appoptics_apm/inst/bunny-client.rb +148 -0
  85. data/lib/appoptics_apm/inst/bunny-consumer.rb +92 -0
  86. data/lib/appoptics_apm/inst/curb.rb +329 -0
  87. data/lib/appoptics_apm/inst/dalli.rb +85 -0
  88. data/lib/appoptics_apm/inst/delayed_job.rb +92 -0
  89. data/lib/appoptics_apm/inst/em-http-request.rb +105 -0
  90. data/lib/appoptics_apm/inst/excon.rb +130 -0
  91. data/lib/appoptics_apm/inst/faraday.rb +77 -0
  92. data/lib/appoptics_apm/inst/http.rb +83 -0
  93. data/lib/appoptics_apm/inst/httpclient.rb +176 -0
  94. data/lib/appoptics_apm/inst/memcache.rb +102 -0
  95. data/lib/appoptics_apm/inst/memcached.rb +94 -0
  96. data/lib/appoptics_apm/inst/mongo.rb +242 -0
  97. data/lib/appoptics_apm/inst/mongo2.rb +225 -0
  98. data/lib/appoptics_apm/inst/moped.rb +466 -0
  99. data/lib/appoptics_apm/inst/rack.rb +146 -0
  100. data/lib/appoptics_apm/inst/redis.rb +275 -0
  101. data/lib/appoptics_apm/inst/resque.rb +151 -0
  102. data/lib/appoptics_apm/inst/rest-client.rb +50 -0
  103. data/lib/appoptics_apm/inst/sequel.rb +178 -0
  104. data/lib/appoptics_apm/inst/sidekiq-client.rb +53 -0
  105. data/lib/appoptics_apm/inst/sidekiq-worker.rb +67 -0
  106. data/lib/appoptics_apm/inst/twitter-cassandra.rb +294 -0
  107. data/lib/appoptics_apm/inst/typhoeus.rb +113 -0
  108. data/lib/appoptics_apm/instrumentation.rb +22 -0
  109. data/lib/appoptics_apm/legacy_method_profiling.rb +97 -0
  110. data/lib/appoptics_apm/loading.rb +66 -0
  111. data/lib/appoptics_apm/logger.rb +41 -0
  112. data/lib/appoptics_apm/method_profiling.rb +33 -0
  113. data/lib/appoptics_apm/ruby.rb +35 -0
  114. data/lib/appoptics_apm/support.rb +135 -0
  115. data/lib/appoptics_apm/test.rb +94 -0
  116. data/lib/appoptics_apm/thread_local.rb +26 -0
  117. data/lib/appoptics_apm/util.rb +312 -0
  118. data/lib/appoptics_apm/version.rb +15 -0
  119. data/lib/appoptics_apm/xtrace.rb +103 -0
  120. data/lib/appoptics_apm.rb +72 -0
  121. data/lib/joboe_metal.rb +214 -0
  122. data/lib/oboe/README +2 -0
  123. data/lib/oboe/backward_compatibility.rb +80 -0
  124. data/lib/oboe/inst/rack.rb +11 -0
  125. data/lib/oboe.rb +7 -0
  126. data/lib/oboe_metal.rb +187 -0
  127. data/lib/rails/generators/appoptics_apm/install_generator.rb +45 -0
  128. data/lib/rails/generators/appoptics_apm/templates/appoptics_apm_initializer.rb +222 -0
  129. data/ruby_setup.sh +47 -0
  130. data/run_docker_build_gem_upload_to_packagecloud.sh +20 -0
  131. data/run_tests_docker.rb +32 -0
  132. data/test/benchmark/README.md +65 -0
  133. data/test/benchmark/logging_bench.rb +54 -0
  134. data/test/benchmark/with_libraries_gemfile/bunny_bench.rb +69 -0
  135. data/test/benchmark/with_rails5x_gemfile/action_controller5x_bench.rb +43 -0
  136. data/test/frameworks/apps/grape_nested.rb +33 -0
  137. data/test/frameworks/apps/grape_simple.rb +80 -0
  138. data/test/frameworks/apps/padrino_simple.rb +80 -0
  139. data/test/frameworks/apps/sinatra_simple.rb +55 -0
  140. data/test/frameworks/grape_test.rb +286 -0
  141. data/test/frameworks/padrino_test.rb +222 -0
  142. data/test/frameworks/rails3x_test.rb +554 -0
  143. data/test/frameworks/rails4x_test.rb +570 -0
  144. data/test/frameworks/rails5x_api_test.rb +210 -0
  145. data/test/frameworks/rails5x_test.rb +376 -0
  146. data/test/frameworks/rails_shared_tests.rb +172 -0
  147. data/test/frameworks/sinatra_test.rb +140 -0
  148. data/test/instrumentation/bunny_client_test.rb +276 -0
  149. data/test/instrumentation/bunny_consumer_test.rb +204 -0
  150. data/test/instrumentation/curb_test.rb +398 -0
  151. data/test/instrumentation/dalli_test.rb +177 -0
  152. data/test/instrumentation/em_http_request_test.rb +89 -0
  153. data/test/instrumentation/excon_test.rb +231 -0
  154. data/test/instrumentation/faraday_test.rb +228 -0
  155. data/test/instrumentation/http_test.rb +143 -0
  156. data/test/instrumentation/httpclient_test.rb +320 -0
  157. data/test/instrumentation/memcache_test.rb +260 -0
  158. data/test/instrumentation/memcached_test.rb +229 -0
  159. data/test/instrumentation/mongo_v1_test.rb +479 -0
  160. data/test/instrumentation/mongo_v2_index_test.rb +124 -0
  161. data/test/instrumentation/mongo_v2_test.rb +584 -0
  162. data/test/instrumentation/mongo_v2_view_test.rb +435 -0
  163. data/test/instrumentation/moped_test.rb +517 -0
  164. data/test/instrumentation/rack_test.rb +165 -0
  165. data/test/instrumentation/redis_hashes_test.rb +268 -0
  166. data/test/instrumentation/redis_keys_test.rb +321 -0
  167. data/test/instrumentation/redis_lists_test.rb +310 -0
  168. data/test/instrumentation/redis_misc_test.rb +163 -0
  169. data/test/instrumentation/redis_sets_test.rb +296 -0
  170. data/test/instrumentation/redis_sortedsets_test.rb +328 -0
  171. data/test/instrumentation/redis_strings_test.rb +349 -0
  172. data/test/instrumentation/resque_test.rb +185 -0
  173. data/test/instrumentation/rest-client_test.rb +288 -0
  174. data/test/instrumentation/sequel_mysql2_test.rb +353 -0
  175. data/test/instrumentation/sequel_mysql_test.rb +334 -0
  176. data/test/instrumentation/sequel_pg_test.rb +336 -0
  177. data/test/instrumentation/sidekiq-client_test.rb +159 -0
  178. data/test/instrumentation/sidekiq-worker_test.rb +180 -0
  179. data/test/instrumentation/twitter-cassandra_test.rb +424 -0
  180. data/test/instrumentation/typhoeus_test.rb +284 -0
  181. data/test/jobs/delayed_job/db_worker_job.rb +29 -0
  182. data/test/jobs/delayed_job/error_worker_job.rb +10 -0
  183. data/test/jobs/delayed_job/remote_call_worker_job.rb +20 -0
  184. data/test/jobs/resque/db_worker_job.rb +29 -0
  185. data/test/jobs/resque/error_worker_job.rb +10 -0
  186. data/test/jobs/resque/remote_call_worker_job.rb +20 -0
  187. data/test/jobs/sidekiq/db_worker_job.rb +29 -0
  188. data/test/jobs/sidekiq/error_worker_job.rb +10 -0
  189. data/test/jobs/sidekiq/remote_call_worker_job.rb +20 -0
  190. data/test/minitest_helper.rb +276 -0
  191. data/test/mocked/curb_mocked_test.rb +311 -0
  192. data/test/mocked/excon_mocked_test.rb +166 -0
  193. data/test/mocked/faraday_mocked_test.rb +93 -0
  194. data/test/mocked/http_mocked_test.rb +129 -0
  195. data/test/mocked/httpclient_mocked_test.rb +245 -0
  196. data/test/mocked/rest_client_mocked_test.rb +103 -0
  197. data/test/mocked/typhoeus_mocked_test.rb +192 -0
  198. data/test/models/widget.rb +36 -0
  199. data/test/profiling/legacy_method_profiling_test.rb +201 -0
  200. data/test/profiling/method_profiling_test.rb +631 -0
  201. data/test/queues/delayed_job-client_test.rb +95 -0
  202. data/test/queues/delayed_job-worker_test.rb +91 -0
  203. data/test/reporter/reporter_test.rb +14 -0
  204. data/test/servers/delayed_job.rb +107 -0
  205. data/test/servers/rackapp_8101.rb +29 -0
  206. data/test/servers/rails3x_8140.rb +96 -0
  207. data/test/servers/rails4x_8140.rb +96 -0
  208. data/test/servers/rails5x_8140.rb +95 -0
  209. data/test/servers/rails5x_api_8150.rb +78 -0
  210. data/test/servers/sidekiq.rb +29 -0
  211. data/test/servers/sidekiq.yml +7 -0
  212. data/test/servers/sidekiq_initializer.rb +25 -0
  213. data/test/settings +0 -0
  214. data/test/support/auto_tracing_test.rb +50 -0
  215. data/test/support/backcompat_test.rb +276 -0
  216. data/test/support/config_test.rb +149 -0
  217. data/test/support/dnt_test.rb +98 -0
  218. data/test/support/init_report_test.rb +25 -0
  219. data/test/support/liboboe_settings_test.rb +110 -0
  220. data/test/support/logging_test.rb +130 -0
  221. data/test/support/noop_test.rb +88 -0
  222. data/test/support/sql_sanitize_test.rb +55 -0
  223. data/test/support/tracing_mode_test.rb +33 -0
  224. data/test/support/tvalias_test.rb +15 -0
  225. data/test/support/xtrace_test.rb +41 -0
  226. metadata +475 -0
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.