Platform Analytics 7 Dataflow

Daily Host Availability datamart

Main ETL XML file

hostAvailabilityDaily.xml

Output CSV files

hostavailabilitydaily.csv

Record sample

DATE, WEEKDAY, COREHOUR, SHIFT, CLUSTERNAME, HOSTNAME, UPMINUTES, DOWNMINUTES, DOWNTIMES

"2005-10-31", 2, 0, "Shift 1", "LSF62", "amd01.lsf.platform.com", 0, 420, 0.0

"2005-10-31", 2, 0, "Shift 1", "LSF62", "amd06.lsf.platform.com", 0, 420, 0.0

Column description

The Daily Host Availability datamart gets its information from the wi_hoststatus table. The information is logged by change-a new record is generated if the status has changed. A transformer called LogByChangeToSampling transforms this information into hourly sampled data. Then it collects the upminutes, downmintues, and downtimes data into daily sampled data and outputs them to this datamart.

The following table describes each column and its source:
Column name
Source and description
DATE
This is the date portion of the localized time_stamp field which the LogbyChangetoSampling transformer converts from the time_stamp column in the wi_hoststatus table. The format is "YYYY-MM-DD".
WEEKDAY
This is the weekday number of the localized time_stamp field which the LogbyChangetoSampling transformer converts from the time_stamp in the wi_hoststatus table. The value "1" stands for "Sunday", "2" stands for "Monday", etc.
COREHOUR
The source is the localized time_stamp field which the LogbyChangetoSampling transformer converts from the time_stamp column in the wi_hoststatus table.
SHIFT
The source is the localized time_stamp field which the LogbyChangetoSampling transformer converts from the time_stamp column in the wi_hoststatus table. The shifts transformer maps the localized time_stamp based on a user-defined shift mapping, and returns the shift number ("1", "2" or "3") to this column.
CLUSTERNAME
This is the cluster_name in the wi_clustercode table, which is based on the cluster_code in the wi_hoststatus table.
HOSTNAME
This is the host_name in the wi_hostcode table, which is based on the host_code in the wi_hoststatus table.
UPMINUTES
This is the total time, in minutes, that this host is "up" during this day. A status to up/down mapping file called "Status map" defines which states are "up".
DOWNMINUTES
This is the total time, in minutes, that this host is "down" during this day. A status to up/down mapping file called "Status map" defines which states are "down".
DOWNTIMES
This is the total number of times that this host has gone from "up" to "down" during this day. A status to up/down mapping file called "Status map" defines which states are "up" and which are "down".