Gets the playbook run statistics for a specific playbook.
Request parameters
Field
|
Required
|
Type
|
Description
|
block_names |
Optional |
List |
Filters on specified list of block names.
|
playbook_run_ids |
Optional |
List |
Calculates the playbook run statistics for the specified playbook using only the specified list of playbook run IDs.
playbook_run_ids and time_range are mutually exclusive.
|
time_range |
Optional |
List with 2 elements: start_time and end_time |
Calculates the playbook run statistics for a given playbook only for playbook runs in that time range. Express the start and end of the time_range with only dates (['2022-09-13', '2022-09-14']) or with both dates and times (['2022-09-13T17:00', '2022-09-14T17:00']).
time_range and playbook_run_ids are mutually exclusive.
|
The following requests return similar responses. A sample response is provided at the end of this list.
Example request using playbook ID
Get the playbook run statistics for playbook 27.
curl -k -u username:password https://localhost/rest/playbook_resource_usage/27
Example request using time_range
Get the playbook run statistics for playbook 27 between 5:00pm on September 13, 2022 and 5:00pm on September 14, 2022.
curl -k -u username:password https://localhost/rest/playbook_resource_usage/27?time_range=['2022-09-13T17:00', '2022-09-14T17:00']
Example request using playbook ID and specific playbook run IDs
Get the playbook run statistics for playbook 27 for playbook runs 40 and 41.
curl -k -u username:password https://localhost/rest/playbook_resource_usage/27?playbook_run_id=[40,41]
Example response using any of the previously mentioned example requests
Depending on the request used, the exact response might differ from this example response.
Each top-level name, like geolocate_ip_1
and on_finish
, corresponds to the name of a function in the playbook.
{
"filter_1": {
"avg_http_bytes_in_requests": 0,
"avg_http_bytes_in_responses": 0,
"avg_http_number_requests": 0,
"avg_http_latency": "0:00:00",
"avg_db_number_queries": 16,
"avg_db_query_latency": "0:00:00.039000",
"avg_duration": "0:00:00.025333",
"times_called": 3,
"times_succeeded": 3,
"custom_function_scores": []
},
"geolocate_ip_1": {
"avg_http_bytes_in_requests": 0,
"avg_http_bytes_in_responses": 0,
"avg_http_number_requests": 0,
"avg_http_latency": "0:00:00",
"avg_db_number_queries": 7,
"avg_db_query_latency": "0:00:00.018000",
"avg_duration": "0:00:00.022333",
"times_called": 3,
"times_succeeded": 3,
"custom_function_scores": []
},
"join_random_get_requests": {
"avg_http_bytes_in_requests": 0,
"avg_http_bytes_in_responses": 0,
"avg_http_number_requests": 0,
"avg_http_latency": "0:00:00",
"avg_db_number_queries": 5,
"avg_db_query_latency": "0:00:00.008500",
"avg_duration": "0:00:00.121833",
"times_called": 6,
"times_succeeded": 6,
"custom_function_scores": []
},
"on_finish": {
"avg_http_bytes_in_requests": 0,
"avg_http_bytes_in_responses": 0,
"avg_http_number_requests": 0,
"avg_http_latency": "0:00:00",
"avg_db_number_queries": 1,
"avg_db_query_latency": "0:00:00.002000",
"avg_duration": "0:00:00.002000",
"times_called": 3,
"times_succeeded": 3,
"custom_function_scores": []
},
"on_start": {
"avg_http_bytes_in_requests": 0,
"avg_http_bytes_in_responses": 0,
"avg_http_number_requests": 0,
"avg_http_latency": "0:00:00",
"avg_db_number_queries": 8,
"avg_db_query_latency": "0:00:00.004000",
"avg_duration": "0:00:00.058000",
"times_called": 3,
"times_succeeded": 3,
"custom_function_scores": []
},
"random_get_requests": {
"avg_http_bytes_in_requests": 0,
"avg_http_bytes_in_responses": 14868,
"avg_http_number_requests": 2,
"avg_http_latency": "0:00:00.200000",
"avg_db_number_queries": 3,
"avg_db_query_latency": "0:00:00.007000",
"avg_duration": "0:00:00.231000",
"times_called": 3,
"times_succeeded": 3,
"custom_function_scores": []
},
"resource_score_cf_1": {
"avg_http_bytes_in_requests": 0,
"avg_http_bytes_in_responses": 0,
"avg_http_number_requests": 0,
"avg_http_latency": "0:00:00",
"avg_db_number_queries": 3,
"avg_db_query_latency": "0:00:00.006000",
"avg_duration": "0:00:00.026000",
"times_called": 3,
"times_succeeded": 3,
"custom_function_scores": [
{
"avg_http_bytes_in_requests": 0,
"avg_http_bytes_in_responses": 0,
"avg_http_number_requests": 0,
"avg_http_latency": "0:00:00",
"avg_db_number_queries": 0,
"avg_db_query_latency": "0:00:00",
"avg_duration": "0:00:00.000667",
"times_called": 3,
"times_succeeded": 3,
"custom_function_id": 85,
"custom_function_name": "resource_score_cf",
"custom_function_scm": "local"
}
]
}
}
Example request using playbook ID and specific playbook block names
Get the playbook run statistics for all runs of playbook 27 between 5:00pm on September 13, 2022 and 5:00pm on September 14, 2022 for playbook block names on_start
and geolocate_ip_1
.
curl -k -u username:password https://localhost/rest/playbook_resource_usage/27?time_range=['2022-09-13T17:00', '2022-09-14T17:00']&block_names=['on_start', 'geolocate_ip_1']
You can also combine the block names with specific playbook run IDs or with a time_range.
Example request using playbook ID, specific playbook run IDs, and specific playbook block names
Get the playbook run statistics for playbook 27, run IDs 40 and 41, for playbook block names
on_start
and
geolocate_ip_1
.
curl -k -u username:password https://localhost/rest/playbook_resource_usage/27?playbook_run_id=[40,41]&block_names=['on_start', 'geolocate_ip_1']
Example request using playbook ID, a specific time_frame, and specific playbook block names
Get the playbook run statistics for all runs of playbook 27 between 5:00pm on September 13, 2022 and 5:00pm on September 14, 2022 for playbook block names on_start and geolocate_ip_1.
curl -k -u username:password https://localhost/rest/playbook_resource_usage/27?time_range=['2022-09-13T17:00', '2022-09-14T17:00']&block_names=['on_start', 'geolocate_ip_1']
Example response using time_range and specific playbook block names
A successful GET returns all of the playbook run statistics for the specified playbook within the specified date/time span, for the specific block names.
{
"on_start": {
"avg_http_bytes_in_requests": 0,
"avg_http_bytes_in_responses": 0,
"avg_http_number_requests": 0,
"avg_http_latency": "0:00:00",
"avg_db_number_queries": 8,
"avg_db_query_latency": "0:00:00.004000",
"avg_duration": "0:00:00.058000",
"times_called": 3,
"times_succeeded": 3,
"custom_function_scores": []
},
"geolocate_ip_1": {
"avg_http_bytes_in_requests": 0,
"avg_http_bytes_in_responses": 0,
"avg_http_number_requests": 0,
"avg_http_latency": "0:00:00",
"avg_db_number_queries": 7,
"avg_db_query_latency": "0:00:00.018000",
"avg_duration": "0:00:00.022333",
"times_called": 3,
"times_succeeded": 3,
"custom_function_scores": []
}
}
Notes:
Custom functions have section titles including _cf
and are associated with the blocks that call them. Statistics can show custom code that includes multiple, consecutive phantom.custom_function()
calls.
Statistics are not provided for action/app runs, but are provided for the playbook block that runs the action/apps. Statistics show the time taken for the block to complete, not for the action to complete. Even if the action fails, the statistics might show the block as a success because the block successfully started the action.
Feedback submitted, thanks!