Skip to content

Commit 9411546

Browse files
author
tonyschneider
committed
[wip] display events for physical storage
1 parent 41e0d0b commit 9411546

File tree

4 files changed

+25
-14
lines changed

4 files changed

+25
-14
lines changed

app/models/ems_event.rb

+5
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ def self.add(ems_id, event_hash)
7878
process_availability_zone_in_event!(event_hash)
7979
process_cluster_in_event!(event_hash)
8080
process_container_entities_in_event!(event_hash)
81+
process_physical_storage_in_event!(event_hash)
8182

8283
# Write the event
8384
new_event = create_event(event_hash)
@@ -136,6 +137,10 @@ def self.process_host_in_event!(event, options = {})
136137
end
137138
end
138139

140+
def self.process_physical_storage_in_event!(event, options = {})
141+
process_object_in_event!(PhysicalStorage, event, options)
142+
end
143+
139144
def self.process_container_entities_in_event!(event, _options = {})
140145
[ContainerNode, ContainerGroup, ContainerReplicator].each do |entity|
141146
process_object_in_event!(entity, event)

app/models/event_stream.rb

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class EventStream < ApplicationRecord
2626
belongs_to :container_node
2727

2828
belongs_to :physical_server
29+
belongs_to :physical_storage
2930
belongs_to :physical_chassis, :inverse_of => :event_streams
3031
belongs_to :physical_switch, :inverse_of => :event_streams
3132

app/models/physical_storage.rb

+15-13
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,32 @@ class PhysicalStorage < ApplicationRecord
55
include SupportsFeatureMixin
66
include CustomActionsMixin
77
include EmsRefreshMixin
8+
include EventMixin
9+
10+
# The physical-storage is expected to have san_addresses of its own in the future (The real addresses through which it actually connects to the SAN).
11+
# Therefore, the name san_addresses is reserved for the physical-storages actual san-addresses, and for all of the san_addresses configured in the physical-storage's host_initiators we refer as registered_initiator_addresses.
812

913
belongs_to :ext_management_system, :foreign_key => :ems_id
1014
belongs_to :physical_rack
1115
belongs_to :physical_chassis, :inverse_of => :physical_storages
16+
belongs_to :physical_storage_family, :inverse_of => :physical_storages
17+
18+
has_one :hardware, :through => :computer_system
19+
has_one :computer_system, :as => :managed_entity, :dependent => :destroy
20+
has_one :asset_detail, :as => :resource, :dependent => :destroy, :inverse_of => false
1221

1322
has_many :storage_resources, :dependent => :destroy
1423
has_many :host_initiators, :dependent => :destroy
1524
has_many :host_initiator_groups, :dependent => :destroy
16-
17-
# The physical-storage is expected to have san_addresses of its own in the future (The real addresses through which it actually connects to the SAN).
18-
# Therefore, the name san_addresses is reserved for the physical-storages actual san-addresses, and for all of the san_addresses configured in the physical-storage's host_initiators we refer as registered_initiator_addresses.
1925
has_many :registered_initiator_addresses, :through => :host_initiators, :source => :san_addresses
20-
21-
belongs_to :physical_storage_family, :inverse_of => :physical_storages
22-
23-
has_one :asset_detail, :as => :resource, :dependent => :destroy, :inverse_of => false
24-
2526
has_many :canisters, :dependent => :destroy, :inverse_of => false
2627
has_many :physical_disks, :dependent => :destroy, :inverse_of => :physical_storage
27-
28-
has_one :computer_system, :as => :managed_entity, :dependent => :destroy
29-
has_one :hardware, :through => :computer_system
30-
3128
has_many :canister_computer_systems, :through => :canisters, :source => :computer_system
3229
has_many :guest_devices, :through => :hardware
33-
3430
has_many :wwpn_candidates, :dependent => :destroy
3531

32+
supports :timeline
33+
3634
supports_not :create
3735
supports_not :delete
3836
supports_not :update_physical_storage
@@ -163,4 +161,8 @@ def update_physical_storage(options = {})
163161
def raw_update_physical_storage(_options = {})
164162
raise NotImplementedError, _("raw_update_volume must be implemented in a subclass")
165163
end
164+
165+
def event_where_clause(assoc = :ems_events)
166+
["#{events_table_name(assoc)}.physical_storage_id = ?", id]
167+
end
166168
end

db/fixtures/miq_product_features.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -6645,6 +6645,10 @@
66456645
:description: Display Individual Physical Storage
66466646
:feature_type: view
66476647
:identifier: physical_storage_show
6648+
- :name: Timeline
6649+
:description: Display Timelines for Physical Storage
6650+
:feature_type: view
6651+
:identifier: physical_storage_timeline
66486652
- :name: Operate
66496653
:description: Perform Operations on Physical Storages
66506654
:feature_type: control
@@ -6679,7 +6683,6 @@
66796683
:description: Validate a Physical Storage
66806684
:feature_type: admin
66816685
:identifier: physical_storage_validate
6682-
66836686
# Physical Servers
66846687
- :name: Physical Servers
66856688
:description: Everything under Physical Servers

0 commit comments

Comments
 (0)