Charts are Excel line area charts.
Charts are displaying the header sequence values.
Navigation links are provided to navigate from the Headers to the Charts and vice-versa.
Charts are declared within the charts
block inside the Task Sequence sheets.
<charts> <chart title="CPU"> <serie header="system_cpu"/> <serie header="process_cpu"/> <serie header="system_cpu"/> </chart> <chart title="Threads" y_axis_max="500"> <serie header="thread_counter"/> <serie header="locked_thread_counter"/> <serie header="action_counter"/> </chart> </charts>
The header
is the exact name of the header displayed in the Headers section.
When the header is template based, header name will be composed of the template name associated to the header identifiers, separated by dashes:
<serie header="garbage_collection_memory_used_after_gc-last-all"/>
Exception : The memory_pool
refers to the header display name (lower case, with dashes) instead of the header identifier :<serie header="memory_pool-old-gen-used"/>
The y_axis_max
controls the maximum value displayed on the Y axis. Optional.