use boolean field for cached status
All checks were successful
Publish Docker Images / docker (push) Successful in 1m24s
All checks were successful
Publish Docker Images / docker (push) Successful in 1m24s
This commit is contained in:
parent
74f5832a8a
commit
eb116c06cd
@ -84,7 +84,7 @@ async function logRequestToDatabase({
|
||||
const point = new Point("proxy")
|
||||
.tag("type", "request")
|
||||
.tag("node", nodeId)
|
||||
.tag("cached", cached ? "true" : "false")
|
||||
.booleanField("cached", cached ? true : false)
|
||||
.stringField("url", url)
|
||||
.intField("status", status)
|
||||
.timestamp(Date.now());
|
||||
|
Loading…
Reference in New Issue
Block a user