Class: Healthchecks::V3
- Inherits:
-
Integration
- Object
- Integration
- Healthchecks::V3
- Defined in:
- app/models/pager_tree/integrations/healthchecks/v3.rb
Constant Summary collapse
- OPTIONS =
[]
Instance Method Summary collapse
- #adapter_action ⇒ Object
- #adapter_incoming_can_defer? ⇒ Boolean
- #adapter_process_create ⇒ Object
- #adapter_supports_incoming? ⇒ Boolean
- #adapter_supports_outgoing? ⇒ Boolean
- #adapter_thirdparty_id ⇒ Object
Instance Method Details
#adapter_action ⇒ Object
25 26 27 28 29 30 31 32 33 34 |
# File 'app/models/pager_tree/integrations/healthchecks/v3.rb', line 25 def adapter_action case adapter_incoming_request_params.dig("event_type") when "trigger" :create when "resolve" :resolve else :other end end |
#adapter_incoming_can_defer? ⇒ Boolean
17 18 19 |
# File 'app/models/pager_tree/integrations/healthchecks/v3.rb', line 17 def adapter_incoming_can_defer? true end |
#adapter_process_create ⇒ Object
36 37 38 39 40 41 42 43 44 45 |
# File 'app/models/pager_tree/integrations/healthchecks/v3.rb', line 36 def adapter_process_create Alert.new( title: _title, description: _description, thirdparty_id: adapter_thirdparty_id, dedup_keys: [], additional_data: _additional_datums, tags: ) end |
#adapter_supports_incoming? ⇒ Boolean
9 10 11 |
# File 'app/models/pager_tree/integrations/healthchecks/v3.rb', line 9 def adapter_supports_incoming? true end |
#adapter_supports_outgoing? ⇒ Boolean
13 14 15 |
# File 'app/models/pager_tree/integrations/healthchecks/v3.rb', line 13 def adapter_supports_outgoing? false end |
#adapter_thirdparty_id ⇒ Object
21 22 23 |
# File 'app/models/pager_tree/integrations/healthchecks/v3.rb', line 21 def adapter_thirdparty_id adapter_incoming_request_params.dig("incident_key") end |