appoptics_apm-zearn 4.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (145) hide show
  1. checksums.yaml +7 -0
  2. data/.dockerignore +5 -0
  3. data/.github/ISSUE_TEMPLATE/bug-or-feature-request.md +16 -0
  4. data/.github/workflows/build_and_release_gem.yml +103 -0
  5. data/.github/workflows/build_for_packagecloud.yml +70 -0
  6. data/.github/workflows/docker-images.yml +47 -0
  7. data/.github/workflows/run_cpluplus_tests.yml +73 -0
  8. data/.github/workflows/run_tests.yml +168 -0
  9. data/.github/workflows/scripts/test_install.rb +23 -0
  10. data/.github/workflows/swig/swig-v4.0.2.tar.gz +0 -0
  11. data/.github/workflows/test_on_4_linux.yml +159 -0
  12. data/.gitignore +36 -0
  13. data/.rubocop.yml +29 -0
  14. data/.travis.yml +130 -0
  15. data/.yardopts +6 -0
  16. data/CHANGELOG.md +769 -0
  17. data/CONFIG.md +33 -0
  18. data/Gemfile +14 -0
  19. data/LICENSE +202 -0
  20. data/README.md +393 -0
  21. data/appoptics_apm.gemspec +70 -0
  22. data/bin/appoptics_apm_config +15 -0
  23. data/examples/prepend.rb +13 -0
  24. data/examples/sdk_examples.rb +158 -0
  25. data/ext/oboe_metal/README.md +69 -0
  26. data/ext/oboe_metal/extconf.rb +151 -0
  27. data/ext/oboe_metal/lib/.keep +0 -0
  28. data/ext/oboe_metal/lib/liboboe-1.0-alpine-x86_64.so.0.0.0.sha256 +1 -0
  29. data/ext/oboe_metal/lib/liboboe-1.0-x86_64.so.0.0.0.sha256 +1 -0
  30. data/ext/oboe_metal/noop/noop.c +8 -0
  31. data/ext/oboe_metal/src/README.md +6 -0
  32. data/ext/oboe_metal/src/VERSION +2 -0
  33. data/ext/oboe_metal/src/bson/bson.h +220 -0
  34. data/ext/oboe_metal/src/bson/platform_hacks.h +91 -0
  35. data/ext/oboe_metal/src/frames.cc +246 -0
  36. data/ext/oboe_metal/src/frames.h +40 -0
  37. data/ext/oboe_metal/src/init_appoptics_apm.cc +21 -0
  38. data/ext/oboe_metal/src/logging.cc +95 -0
  39. data/ext/oboe_metal/src/logging.h +35 -0
  40. data/ext/oboe_metal/src/oboe.h +1156 -0
  41. data/ext/oboe_metal/src/oboe_api.cpp +652 -0
  42. data/ext/oboe_metal/src/oboe_api.hpp +431 -0
  43. data/ext/oboe_metal/src/oboe_debug.h +59 -0
  44. data/ext/oboe_metal/src/oboe_swig_wrap.cc +7329 -0
  45. data/ext/oboe_metal/src/profiling.cc +435 -0
  46. data/ext/oboe_metal/src/profiling.h +78 -0
  47. data/ext/oboe_metal/test/CMakeLists.txt +53 -0
  48. data/ext/oboe_metal/test/FindGMock.cmake +43 -0
  49. data/ext/oboe_metal/test/README.md +56 -0
  50. data/ext/oboe_metal/test/frames_test.cc +164 -0
  51. data/ext/oboe_metal/test/profiling_test.cc +93 -0
  52. data/ext/oboe_metal/test/ruby_inc_dir.rb +8 -0
  53. data/ext/oboe_metal/test/ruby_prefix.rb +8 -0
  54. data/ext/oboe_metal/test/ruby_test_helper.rb +67 -0
  55. data/ext/oboe_metal/test/test.h +11 -0
  56. data/ext/oboe_metal/test/test_main.cc +32 -0
  57. data/init.rb +4 -0
  58. data/lib/appoptics_apm/api/layerinit.rb +41 -0
  59. data/lib/appoptics_apm/api/logging.rb +381 -0
  60. data/lib/appoptics_apm/api/memcache.rb +37 -0
  61. data/lib/appoptics_apm/api/metrics.rb +63 -0
  62. data/lib/appoptics_apm/api/tracing.rb +57 -0
  63. data/lib/appoptics_apm/api/util.rb +120 -0
  64. data/lib/appoptics_apm/api.rb +21 -0
  65. data/lib/appoptics_apm/base.rb +231 -0
  66. data/lib/appoptics_apm/config.rb +299 -0
  67. data/lib/appoptics_apm/frameworks/grape.rb +98 -0
  68. data/lib/appoptics_apm/frameworks/padrino.rb +78 -0
  69. data/lib/appoptics_apm/frameworks/rails/inst/action_controller.rb +104 -0
  70. data/lib/appoptics_apm/frameworks/rails/inst/action_controller4.rb +48 -0
  71. data/lib/appoptics_apm/frameworks/rails/inst/action_controller5.rb +50 -0
  72. data/lib/appoptics_apm/frameworks/rails/inst/action_controller6.rb +50 -0
  73. data/lib/appoptics_apm/frameworks/rails/inst/action_controller_api.rb +50 -0
  74. data/lib/appoptics_apm/frameworks/rails/inst/action_view.rb +88 -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 +29 -0
  78. data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/postgresql.rb +31 -0
  79. data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/utils.rb +119 -0
  80. data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/utils5x.rb +114 -0
  81. data/lib/appoptics_apm/frameworks/rails/inst/logger_formatters.rb +27 -0
  82. data/lib/appoptics_apm/frameworks/rails.rb +100 -0
  83. data/lib/appoptics_apm/frameworks/sinatra.rb +96 -0
  84. data/lib/appoptics_apm/inst/bunny-client.rb +148 -0
  85. data/lib/appoptics_apm/inst/bunny-consumer.rb +89 -0
  86. data/lib/appoptics_apm/inst/curb.rb +332 -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 +101 -0
  90. data/lib/appoptics_apm/inst/excon.rb +125 -0
  91. data/lib/appoptics_apm/inst/faraday.rb +106 -0
  92. data/lib/appoptics_apm/inst/graphql.rb +240 -0
  93. data/lib/appoptics_apm/inst/grpc_client.rb +159 -0
  94. data/lib/appoptics_apm/inst/grpc_server.rb +120 -0
  95. data/lib/appoptics_apm/inst/http.rb +81 -0
  96. data/lib/appoptics_apm/inst/httpclient.rb +174 -0
  97. data/lib/appoptics_apm/inst/logger_formatter.rb +50 -0
  98. data/lib/appoptics_apm/inst/logging_log_event.rb +28 -0
  99. data/lib/appoptics_apm/inst/lumberjack_formatter.rb +13 -0
  100. data/lib/appoptics_apm/inst/memcached.rb +86 -0
  101. data/lib/appoptics_apm/inst/mongo.rb +246 -0
  102. data/lib/appoptics_apm/inst/mongo2.rb +225 -0
  103. data/lib/appoptics_apm/inst/moped.rb +466 -0
  104. data/lib/appoptics_apm/inst/rack.rb +182 -0
  105. data/lib/appoptics_apm/inst/rack_cache.rb +35 -0
  106. data/lib/appoptics_apm/inst/redis.rb +274 -0
  107. data/lib/appoptics_apm/inst/resque.rb +151 -0
  108. data/lib/appoptics_apm/inst/rest-client.rb +48 -0
  109. data/lib/appoptics_apm/inst/sequel.rb +178 -0
  110. data/lib/appoptics_apm/inst/sidekiq-client.rb +55 -0
  111. data/lib/appoptics_apm/inst/sidekiq-worker.rb +66 -0
  112. data/lib/appoptics_apm/inst/twitter-cassandra.rb +294 -0
  113. data/lib/appoptics_apm/inst/typhoeus.rb +108 -0
  114. data/lib/appoptics_apm/instrumentation.rb +22 -0
  115. data/lib/appoptics_apm/loading.rb +65 -0
  116. data/lib/appoptics_apm/logger.rb +14 -0
  117. data/lib/appoptics_apm/noop/README.md +9 -0
  118. data/lib/appoptics_apm/noop/context.rb +27 -0
  119. data/lib/appoptics_apm/noop/metadata.rb +25 -0
  120. data/lib/appoptics_apm/noop/profiling.rb +21 -0
  121. data/lib/appoptics_apm/oboe_init_options.rb +211 -0
  122. data/lib/appoptics_apm/ruby.rb +35 -0
  123. data/lib/appoptics_apm/sdk/current_trace.rb +77 -0
  124. data/lib/appoptics_apm/sdk/custom_metrics.rb +94 -0
  125. data/lib/appoptics_apm/sdk/logging.rb +37 -0
  126. data/lib/appoptics_apm/sdk/tracing.rb +434 -0
  127. data/lib/appoptics_apm/support/profiling.rb +18 -0
  128. data/lib/appoptics_apm/support/transaction_metrics.rb +67 -0
  129. data/lib/appoptics_apm/support/transaction_settings.rb +219 -0
  130. data/lib/appoptics_apm/support/x_trace_options.rb +110 -0
  131. data/lib/appoptics_apm/support_report.rb +119 -0
  132. data/lib/appoptics_apm/test.rb +95 -0
  133. data/lib/appoptics_apm/thread_local.rb +26 -0
  134. data/lib/appoptics_apm/util.rb +326 -0
  135. data/lib/appoptics_apm/version.rb +16 -0
  136. data/lib/appoptics_apm/xtrace.rb +115 -0
  137. data/lib/appoptics_apm.rb +77 -0
  138. data/lib/joboe_metal.rb +212 -0
  139. data/lib/oboe.rb +7 -0
  140. data/lib/oboe_metal.rb +172 -0
  141. data/lib/rails/generators/appoptics_apm/install_generator.rb +47 -0
  142. data/lib/rails/generators/appoptics_apm/templates/appoptics_apm_initializer.rb +425 -0
  143. data/log/.keep +0 -0
  144. data/yardoc_frontpage.md +26 -0
  145. metadata +231 -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.