The main feature extracts every primary data from crawled URLs including depth, load time, HTTP codes, HTML tags, content type, language, no-index etc.
The following examples use URLs aggregation to metrics regarding main data.
{
"aggs": [
{
"group_by": [
"compliant.is_compliant"
]
}
]
}
{
"aggs": [
{
"group_by": [
"depth"
]
}
]
}
{
"aggs": [
{
"group_by": [
{
"range": {
"field": "http_code",
"ranges": [
{ "from": 200, "to": 300 },
{ "from": 300, "to": 400 },
{ "from": 400, "to": 500 },
{ "from": 500 },
{ "to": 200 }
]
}
}
]
}
]
}