You must be aware of the guidelines for creating data source types that are used to define custom data sources for OnCommand Workflow Automation (WFA).
You can define a data source type by using one of the following methods:
The guidelines for creating data source types are as follows:
The predefined data source type that collects information from Performance Advisor uses a SCRIPT-based data source type. The output files are named array_performance.csv and aggregate_performance.csv.
A dictionary entry includes attributes in the following order: array_ip, date, day, hour, cpu_busy, total_ops_per_sec, disk_throughput_per_sec.
The PowerShell script adds data to the .csv file in the same order.
$values = get-Array-CounterValueString ([REF]$data) Add-Content $arrayFile ([byte[]][char[]] "\N t$arrayIP't$date't$day't$hour't$values'n")