Class: SelfManagedPrometheusAlertEvent
- Inherits:
-
ApplicationRecord
- Object
- ActiveRecord::Base
- ApplicationRecord
- SelfManagedPrometheusAlertEvent
- Includes:
- AlertEventLifecycle
- Defined in:
- app/models/self_managed_prometheus_alert_event.rb
Class Method Summary collapse
Methods inherited from ApplicationRecord
at_most, id_in, id_not_in, iid_in, pluck_primary_key, primary_key_in, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, underscore, without_order
Class Method Details
.find_or_initialize_by_payload_key(project, payload_key) ⇒ Object
13 14 15 16 17 |
# File 'app/models/self_managed_prometheus_alert_event.rb', line 13 def self.find_or_initialize_by_payload_key(project, payload_key) find_or_initialize_by(project: project, payload_key: payload_key) do |event| yield event if block_given? end end |