Commit 6400bba9 authored by Dan Jensen's avatar Dan Jensen Committed by Bob Van Landuyt

Set low custom apdex for Audit Events

Audit Events features are data-intensive endpoints that users do not
expect to load as quickly as other endpoints. This sets a custom
apdex SLI urgency of "low" to allow for the historically relatively
slower load times of these features.
parent 7a3a4c0b
......@@ -14,6 +14,8 @@ class Groups::AuditEventsController < Groups::ApplicationController
feature_category :audit_events
urgency :low
def index
@is_last_page = events.last_page?
@events = AuditEventSerializer.new.represent(events)
......
......@@ -13,6 +13,8 @@ class Projects::AuditEventsController < Projects::ApplicationController
feature_category :audit_events
urgency :low
def index
@is_last_page = events.last_page?
@events = AuditEventSerializer.new.represent(events)
......
......@@ -4,6 +4,8 @@ module API
class AuditEvents < ::API::Base
include ::API::PaginationParams
urgency :low
feature_category :audit_events
before do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment