IBM SMF Explorer
GitHub Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Field - hd_request

Action taken by HiperDispatch

Post-Processed

The field is created using the following pseudocode:

hd_action_unpark_filter = ~hd_action_unpark
hd_action_unpark_capping_filter= ~hd_action_unpark_capping
hd_action_park_filter= ~hd_action_park
hd_action_park_capping_filter= ~hd_action_park_capping
hd_action_no_unparking_no_free_capacity_filter= ~hd_action_no_unparking_no_free_capacity
hd_action_no_unparking_no_vl_filter= ~hd_action_no_unparking_no_vl
hd_action_unpark_no_free_capacity_filter= ~hd_action_unpark_no_free_capacity
hd_action_unpark_no_free_capacity_capping_filter= ~hd_action_unpark_no_free_capacity_capping
hd_action_park_mvs_busy_low_filter= ~hd_action_park_mvs_busy_low
hd_action_park_mvs_busy_low_capping_filter= ~hd_action_park_mvs_busy_low_capping
hd_action_park_less4_guaranteed_used_filter= ~hd_action_park_less4_guaranteed_used
hd_action_park_less10_guaranteed_used_filter= ~hd_action_park_less10_guaranteed_used
hd_action_park_small_utilization_filter= ~hd_action_park_small_utilization
hd_action_park_small_utilization_capping_filter= ~hd_action_park_small_utilization_capping
hd_request  = hd_action_unpark.where(hd_action_unpark, '')
hd_request  = hd_request.where(hd_action_unpark_filter, 'Unpark')
hd_request  = hd_request.where( hd_action_unpark_capping_filter, 'Unpark')
hd_request  = hd_request.where( hd_action_park_filter, 'Park')
hd_request  = hd_request.where( hd_action_park_capping_filter, 'Park')
hd_request  = hd_request.where( hd_action_no_unparking_no_free_capacity_filter, 'No unparking')
hd_request  = hd_request.where( hd_action_no_unparking_no_vl_filter, 'No unparking')
hd_request  = hd_request.where( hd_action_unpark_no_free_capacity_filter, 'Unpark')
hd_request  = hd_request.where( hd_action_unpark_no_free_capacity_capping_filter, 'Unpark')
hd_request  = hd_request.where( hd_action_park_mvs_busy_low_filter, 'Park')
hd_request  = hd_request.where( hd_action_park_mvs_busy_low_capping_filter, 'Park')
hd_request  = hd_request.where( hd_action_park_less4_guaranteed_used_filter, 'Park')
hd_request  = hd_request.where( hd_action_park_less10_guaranteed_used_filter, 'Park')
hd_request  = hd_request.where( hd_action_park_small_utilization_filter, 'Park')
hd_request  = hd_request.where( hd_action_park_small_utilization_capping_filter, 'Park')
return hd_request