See total response time for an entire collection

How do I see the total response time for a collection when Iโ€™m running Collection runner?
It would really be great not to have to adding all response times by my self.

You can export results. The results will be in JSON format. It will look something like what I have below.

You should be able to find the time in the totalTime JSON parameter. It will be in Milliseconds.

I know that this is an extra step, but that is how to do it currently as far as I know.

{
"id": "string",
"name": "string",
"allTests": [],
"timestamp": "2019-05-10T13:19:48.782Z",
"collection_id": "string",
"folder_id": "string",
"target_type": "folder",
"environment_id": "string",
"data": [],
"delay": 0,
"count": 1,
"collection": {},
"folder": {},
"environment": null,
"globals": [],
"results": [],
"totalPass": 1,
"totalFail": 0,
"totalTime": 849,    <--------------Right Here. 
"lifecycle": "done",
"requests": [],
"synced": false

}

2 Likes

I found the feature request for this, but itโ€™s open for years, so probably wonโ€™t be in postman very soon.

Since postman version 10 there is a new feature where you can see the results of the run, including the duration and average response time:
image

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.