You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate a new CSV report replacing the cached one
[optional]
var_from
str
(optional) UNIX time in milliseconds or milliseconds from the test start (based on useRelativeTime flag) as the query interval start. Defaults to 'now-5m' (in milliseconds) for false useRelativeTime, and 0 otherwise.
[optional]
interval
str
(optional) The interval used to aggregate the statistics snapshots
The stat views for which a CSV report will be generated
[optional]
to
str
(optional) UNIX time in milliseconds or milliseconds from the test start (based on useRelativeTime flag) as the query interval end. Defaults to 'now-7s' (in milliseconds).
[optional]
use_relative_time
bool
(optional) Specifies if the from/to params use milliseconds from test start or UNIX time in milliseconds.
[optional]
Example
fromcyperf.models.generate_csv_reports_operationimportGenerateCSVReportsOperation# TODO update the JSON string belowjson="{}"# create an instance of GenerateCSVReportsOperation from a JSON stringgenerate_csv_reports_operation_instance=GenerateCSVReportsOperation.from_json(json)
# print the JSON string representation of the objectprint(GenerateCSVReportsOperation.to_json())
# convert the object into a dictgenerate_csv_reports_operation_dict=generate_csv_reports_operation_instance.to_dict()
# create an instance of GenerateCSVReportsOperation from a dictgenerate_csv_reports_operation_from_dict=GenerateCSVReportsOperation.from_dict(generate_csv_reports_operation_dict)