You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add origin detection
* Add external env
* Add tag cardinality option
* Serialize fields
* Update event serializer params
* Add fields to service check
* Use older fakefs version to test against Ruby v2
* Ruby 2.1 compatible multiline strings
* Only use old fakefs on old versions
* Missed multiline
* Further fixes for windows
* Fix content logic
* Fudge allocation test
* Increase timing for macos
* Try avoiding allocation
* Trace the allocations
* Trace initialization
* Return block result
* Try warming up
* Origin detection doesn't need to be a class
* Remove field serializer from event
* Remove windows specific
* Return origin detection
* Remove all linux specific alloction test
* Attempt to bound regex
* Take substring of path.
* Replace regex with parser
* Ruby <= 2.3 compliance
* Remove trace allocations
* Only turn origin detection off for linux
* Make origin detection methods private
* Remove unused instance vars
* Add origin fields to telemetry metrics
* Add delay serializer tests
* Fix field order
# @option opts [Boolean] :pre_sampled If true, the client assumes the caller has already sampled metrics at :sample_rate, and doesn't perform sampling.
160
185
# @option opts [Array<String>] :tags An array of tags
# @option opts [Boolean] :pre_sampled If true, the client assumes the caller has already sampled metrics at :sample_rate, and doesn't perform sampling.
175
201
# @option opts [Array<String>] :tags An array of tags
# @option opts [Numeric] :sample_rate sample rate, 1 for always
190
217
# @option opts [Boolean] :pre_sampled If true, the client assumes the caller has already sampled metrics at :sample_rate, and doesn't perform sampling.
191
218
# @option opts [Array<String>] :tags An array of tags
219
+
# @option opts [String] :cardinality The tag cardinality to use
# @option opts [Numeric] :sample_rate sample rate, 1 for always
207
235
# @option opts [Boolean] :pre_sampled If true, the client assumes the caller has already sampled metrics at :sample_rate, and doesn't perform sampling.
208
236
# @option opts [Array<String>] :tags An array of tags
237
+
# @option opts [String] :cardinality The tag cardinality to use
# @option opts [Numeric] :sample_rate sample rate, 1 for always
222
251
# @option opts [Boolean] :pre_sampled If true, the client assumes the caller has already sampled metrics at :sample_rate, and doesn't perform sampling.
223
252
# @option opts [Array<String>] :tags An array of tags
253
+
# @option opts [String] :cardinality The tag cardinality to use
# @option opts [Numeric] :sample_rate sample rate, 1 for always
236
266
# @option opts [Boolean] :pre_sampled If true, the client assumes the caller has already sampled metrics at :sample_rate, and doesn't perform sampling.
237
267
# @option opts [Array<String>] :tags An array of tags
268
+
# @option opts [String] :cardinality The tag cardinality to use
# @option opts [Numeric] :sample_rate sample rate, 1 for always
273
305
# @option opts [Boolean] :pre_sampled If true, the client assumes the caller has already sampled metrics at :sample_rate, and doesn't perform sampling.
274
306
# @option opts [Array<String>] :tags An array of tags
307
+
# @option opts [String] :cardinality The tag cardinality to use
# @option opts [Numeric] :sample_rate sample rate, 1 for always
288
321
# @option opts [Boolean] :pre_sampled If true, the client assumes the caller has already sampled metrics at :sample_rate, and doesn't perform sampling.
289
322
# @option opts [Array<String>] :tags An array of tags
323
+
# @option opts [String] :cardinality The tag cardinality to use
290
324
# @yield The operation to be timed
291
325
# @see #timing
292
326
# @example Report the time (in ms) taken to activate an account
# @option opts [Numeric] :sample_rate sample rate, 1 for always
308
342
# @option opts [Boolean] :pre_sampled If true, the client assumes the caller has already sampled metrics at :sample_rate, and doesn't perform sampling.
309
343
# @option opts [Array<String>] :tags An array of tags
344
+
# @option opts [String] :cardinality The tag cardinality to use
0 commit comments