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 88,450,683 27.27%
TLSv1_3 74,008,950 22.82%
TLSv1_0 3,541,173 1.09%
TLSv1_1 893,446 0.28%
Total 324,358,091 100.0%

JSON Report


{
  "query": "services.tls.version_selected: *",
  "field": "services.tls.version_selected",
  "total": 324358091,
  "duration": 610,
  "total_omitted": 0,
  "potential_deviation": 0,
  "buckets": [
    {
      "key": "TLSv1_2",
      "count": 88450683
    },
    {
      "key": "TLSv1_3",
      "count": 74008950
    },
    {
      "key": "TLSv1_0",
      "count": 3541173
    },
    {
      "key": "TLSv1_1",
      "count": 893446
    }
  ]
}