* openapi: update 'QueryLog'
This commit is contained in:
parent
68cd7976b7
commit
33093de6aa
|
@ -1,6 +1,46 @@
|
||||||
# AdGuard Home API Change Log
|
# AdGuard Home API Change Log
|
||||||
|
|
||||||
|
|
||||||
|
## v0.99.3: API changes
|
||||||
|
|
||||||
|
### API: Get query log: GET /control/querylog
|
||||||
|
|
||||||
|
The response data is now a JSON object, not an array.
|
||||||
|
|
||||||
|
Response:
|
||||||
|
|
||||||
|
200 OK
|
||||||
|
|
||||||
|
{
|
||||||
|
"oldest":"2006-01-02T15:04:05.999999999Z07:00"
|
||||||
|
"data":[
|
||||||
|
{
|
||||||
|
"answer":[
|
||||||
|
{
|
||||||
|
"ttl":10,
|
||||||
|
"type":"AAAA",
|
||||||
|
"value":"::"
|
||||||
|
}
|
||||||
|
...
|
||||||
|
],
|
||||||
|
"client":"127.0.0.1",
|
||||||
|
"elapsedMs":"0.098403",
|
||||||
|
"filterId":1,
|
||||||
|
"question":{
|
||||||
|
"class":"IN",
|
||||||
|
"host":"doubleclick.net",
|
||||||
|
"type":"AAAA"
|
||||||
|
},
|
||||||
|
"reason":"FilteredBlackList",
|
||||||
|
"rule":"||doubleclick.net^",
|
||||||
|
"status":"NOERROR",
|
||||||
|
"time":"2006-01-02T15:04:05.999999999Z07:00"
|
||||||
|
}
|
||||||
|
...
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
## v0.99.1: API changes
|
## v0.99.1: API changes
|
||||||
|
|
||||||
### API: Get current user info: GET /control/profile
|
### API: Get current user info: GET /control/profile
|
||||||
|
|
|
@ -1417,10 +1417,16 @@ definitions:
|
||||||
example: "2018-11-26T00:02:41+03:00"
|
example: "2018-11-26T00:02:41+03:00"
|
||||||
|
|
||||||
QueryLog:
|
QueryLog:
|
||||||
type: "array"
|
type: "object"
|
||||||
description: "Query log"
|
description: "Query log"
|
||||||
items:
|
properties:
|
||||||
$ref: "#/definitions/QueryLogItem"
|
oldest:
|
||||||
|
type: "string"
|
||||||
|
example: "2018-11-26T00:02:41+03:00"
|
||||||
|
data:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
$ref: "#/definitions/QueryLogItem"
|
||||||
|
|
||||||
QueryLogConfig:
|
QueryLogConfig:
|
||||||
type: "object"
|
type: "object"
|
||||||
|
|
Loading…
Reference in New Issue