Class: RailsErrorDashboard::Services::WebhookPayloadBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/rails_error_dashboard/services/webhook_payload_builder.rb

Overview

Pure algorithm: Build generic webhook payload for error notifications

No HTTP calls — accepts error data, returns a Hash ready for JSON serialization.

Examples:

WebhookPayloadBuilder.call(error_log)
# => { event: "error.created", timestamp: "...", error: { ... } }

Class Method Summary collapse

Class Method Details

.call(error_log) ⇒ Hash

Returns Webhook payload.

Parameters:

  • error_log (ErrorLog)

    The error to build a payload for

Returns:

  • (Hash)

    Webhook payload



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/rails_error_dashboard/services/webhook_payload_builder.rb', line 15

def self.call(error_log)
  {
    event: "error.created",
    timestamp: Time.current.iso8601,
    error: {
      id: error_log.id,
      type: error_log.error_type,
      message: error_log.message,
      severity: error_log.severity.to_s,
      platform: error_log.platform,
      controller: error_log.controller_name,
      action: error_log.action_name,
      occurrence_count: error_log.occurrence_count,
      first_seen_at: error_log.first_seen_at&.iso8601,
      last_seen_at: error_log.last_seen_at&.iso8601,
      occurred_at: error_log.occurred_at.iso8601,
      resolved: error_log.resolved,
      request: {
        url: error_log.request_url,
        params: NotificationHelpers.parse_request_params(error_log.request_params),
        user_agent: error_log.user_agent,
        ip_address: error_log.ip_address
      },
      user: {
        id: error_log.user_id
      },
      backtrace: NotificationHelpers.extract_backtrace(error_log.backtrace),
      metadata: {
        error_hash: error_log.error_hash,
        dashboard_url: NotificationHelpers.dashboard_url(error_log)
      }
    }
  }
end