mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[DOCS] Clarify case duration (#133552)
Co-authored-by: Eric Davis <eric.davis@elastic.co>
This commit is contained in:
parent
b1d9e76eb6
commit
9ca93a552c
5 changed files with 42 additions and 22 deletions
|
@ -124,7 +124,7 @@ The API returns a JSON object listing the retrieved cases. For example:
|
|||
"description": "Case description",
|
||||
"settings": { "syncAlerts": true },
|
||||
"owner": "securitySolution",
|
||||
"duration": null,
|
||||
"duration": null, <1>
|
||||
"severity": "low",
|
||||
"closed_at": null,
|
||||
"closed_by": null,
|
||||
|
@ -155,3 +155,7 @@ The API returns a JSON object listing the retrieved cases. For example:
|
|||
"count_closed_cases": 0
|
||||
}
|
||||
--------------------------------------------------
|
||||
<1> Duration represents the elapsed time from the creation of the case to its
|
||||
closure (in seconds). If the case has not been closed, the duration is set to
|
||||
`null`. If the case was closed after less than half a second, the duration is
|
||||
rounded down to zero.
|
|
@ -92,11 +92,15 @@ The API returns a JSON object with the retrieved case. For example:
|
|||
},
|
||||
"owner": "securitySolution",
|
||||
"severity": "low",
|
||||
"duration": null,
|
||||
"duration": null, <1>
|
||||
"tags": [
|
||||
"phishing",
|
||||
"social engineering",
|
||||
"bubblegum"
|
||||
]
|
||||
}
|
||||
--------------------------------------------------
|
||||
--------------------------------------------------
|
||||
<1> Duration represents the elapsed time from the creation of the case to its
|
||||
closure (in seconds). If the case has not been closed, the duration is set to
|
||||
`null`. If the case was closed after less than half a second, the duration is
|
||||
rounded down to zero.
|
Loading…
Add table
Add a link
Reference in a new issue