2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
module ErrorTracking
|
|
|
|
class SentryClient
|
2020-03-13 15:44:24 +05:30
|
|
|
module Event
|
|
|
|
def issue_latest_event(issue_id:)
|
|
|
|
latest_event = http_get(api_urls.issue_latest_event_url(issue_id))[:body]
|
|
|
|
|
|
|
|
map_to_event(latest_event)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def map_to_event(event)
|
|
|
|
stack_trace = parse_stack_trace(event)
|
|
|
|
|
|
|
|
Gitlab::ErrorTracking::ErrorEvent.new(
|
2022-07-01 11:34:44 +05:30
|
|
|
project_id: event['projectID'],
|
2022-10-02 17:18:49 +05:30
|
|
|
issue_id: ensure_numeric!('issue_id', event['groupID']),
|
2022-06-21 17:19:12 +05:30
|
|
|
date_received: event['dateReceived'],
|
2020-03-13 15:44:24 +05:30
|
|
|
stack_trace_entries: stack_trace
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def parse_stack_trace(event)
|
2022-06-21 17:19:12 +05:30
|
|
|
exception_entry = event['entries']&.detect { |h| h['type'] == 'exception' }
|
2020-03-13 15:44:24 +05:30
|
|
|
return [] unless exception_entry
|
|
|
|
|
|
|
|
exception_values = exception_entry.dig('data', 'values')
|
|
|
|
stack_trace_entry = exception_values&.detect { |h| h['stacktrace'].present? }
|
|
|
|
return [] unless stack_trace_entry
|
|
|
|
|
|
|
|
stack_trace_entry.dig('stacktrace', 'frames') || []
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|