Skip to content

cache_fetch_hit.active_support

View Markdown

A Rails cache fetch hit.

Source Active Support Category Cache Fields 8 honeybadger-ruby

Fields

8
FieldTypeDescription
event_typestringAllowed value: cache_fetch_hit.active_support.
keystringCache key.
storestringCache store class name.
durationnumberDuration in milliseconds.
instrumenter_idstringRails instrumenter UUID.
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_fetch_hit.active_support",
"key": "users/123",
"store": "ActiveSupport::Cache::RedisCacheStore",
"duration": 0.05,
"instrumenter_id": "d9f4a7b2c1e8d3f6a0b5",
"request_id": "0f5e4bb2-3c46-4b1c-91d5-2f4e8a6b9c01",
"hostname": "web-1.example.com",
"environment": "production"
}