Script to List Processor information by host

Script will list all information about processors of each hosts that make part of the Vertica cluster.

SELECT host_name,
       processor_count,
       processor_core_count,
       processor_description
  FROM v_monitor.host_resources;