Report on Hosts
This tool allows you to generate a report on the breakdown of a value present on the Hosts returned
by your query. For example, to generate a report on ports seen on Hosts with HTTP services, you could
query for services.service_name: HTTP
and then generate a report on the breakdown
of the field
services.port
Report for Hosts
services.tls.version_selected | services | |
---|---|---|
TLSv1_2 | 89,761,557 | 27.55% |
TLSv1_3 | 74,428,627 | 22.84% |
TLSv1_0 | 3,645,943 | 1.12% |
TLSv1_1 | 872,153 | 0.27% |
Total | 325,833,111 | 100.0% |
JSON Report
{
"query": "services.tls.version_selected: *",
"field": "services.tls.version_selected",
"total": 325833111,
"duration": 1862,
"total_omitted": 0,
"potential_deviation": 0,
"buckets": [
{
"key": "TLSv1_2",
"count": 89761557
},
{
"key": "TLSv1_3",
"count": 74428627
},
{
"key": "TLSv1_0",
"count": 3645943
},
{
"key": "TLSv1_1",
"count": 872153
}
]
}