Skip to content

feature_operation.flipper

View Markdown

A Flipper feature flag check or mutation recorded by Honeybadger.

Source Flipper Category Feature flags Fields 9 honeybadger-ruby

Fields

9
FieldTypeDescription
event_typestringAllowed value: feature_operation.flipper.
feature_namestringName of the Flipper feature flag.
operationstringOperation performed, e.g. "enabled?", "enable", "disable".
resultanyResult of the operation. Checks return booleans, while mutations can return other values.
request_idstringRails request UUID, present on any event fired during a web request context. Set by the Honeybadger agent when available.
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).
instrumenter_idstringActiveSupport::Notifications instrumenter UUID, added by the Honeybadger notification subscriber.
durationnumberDuration of the instrumented operation in milliseconds.

Example

{
"event_type": "feature_operation.flipper",
"feature_name": "new_dashboard",
"operation": "enabled?",
"result": true,
"request_id": "0f5e4bb2-3c46-4b1c-91d5-2f4e8a6b9c01",
"hostname": "web-1.example.com",
"environment": "production",
"instrumenter_id": "d6a5b3f4c2e1908a7b6c",
"duration": 0.42
}