← Back to Browser domain
Browser.getHistograms
Get Chrome histograms.
Domain: Browser
experimental
Parameters
| Name | Type | Description |
query (optional) | string | Requested substring in name. Only histograms which have query as a
substring in their name are extracted. An empty or absent query returns
all histograms. |
delta (optional) | boolean | If true, retrieve delta since last delta call. |
Returns
| Name | Type | Description |
histograms | array | Histograms. |
Example Request
{
"id": 1,
"method": "Browser.getHistograms"
}
Example Response
{
"id": 1,
"result": {
"histograms": []
}
}
Usage in Node.js
const result = await send('Browser.getHistograms');
console.log(result);
// {"histograms": []}