* openapi: describe top_* array entries in /stats
Squashed commit of the following: commit d0b640cb36985c82f1020de99fba2201a1c54738 Author: Simon Zolin <s.zolin@adguard.com> Date: Thu Jun 18 11:53:16 2020 +0300 * openapi: describe top_* array entries in /stats
This commit is contained in:
parent
523aeb5c98
commit
ec6e0bea07
|
@ -1213,15 +1213,15 @@ components:
|
|||
top_queried_domains:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
$ref: "#/components/schemas/TopArrayEntry"
|
||||
top_clients:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
$ref: "#/components/schemas/TopArrayEntry"
|
||||
top_blocked_domains:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
$ref: "#/components/schemas/TopArrayEntry"
|
||||
dns_queries:
|
||||
type: array
|
||||
items:
|
||||
|
@ -1238,6 +1238,12 @@ components:
|
|||
type: array
|
||||
items:
|
||||
type: integer
|
||||
TopArrayEntry:
|
||||
type: object
|
||||
description: Represent the number of hits per key (domain or client IP)
|
||||
properties:
|
||||
domain_or_ip:
|
||||
type: integer
|
||||
StatsConfig:
|
||||
type: object
|
||||
description: Statistics configuration
|
||||
|
|
Loading…
Reference in New Issue