Skip to content

cache_read_multi.active_support

View Markdown

A Rails multi-key cache read.

Source Active Support Category Cache Fields 9 honeybadger-ruby

Fields

9
FieldTypeDescription
event_typestringAllowed value: cache_read_multi.active_support.
keyarray<string>Cache keys read.
hitsarray<string>Keys that were cache hits.
storestringCache store class name.
durationnumberDuration in milliseconds.
instrumenter_idstring
request_idstringRails request UUID, present on any event fired during a web request context. Merged globally by the Honeybadger agent.
hostnamestringServer hostname. Attached to every event by default (events.attach_hostname).
environmentstringApplication environment, e.g. "production". Attached to every event by default (events.attach_environment).

Example

{
"event_type": "cache_read_multi.active_support",
"key": [
"views/users/123",
"views/users/124"
],
"hits": [
"views/users/123"
],
"store": "ActiveSupport::Cache::RedisCacheStore",
"duration": 0.88,
"instrumenter_id": "d9f4a7b2c1e8d3f6a0b5",
"request_id": "0f5e4bb2-3c46-4b1c-91d5-2f4e8a6b9c01",
"hostname": "web-1.example.com",
"environment": "production"
}