-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into d/2022-03-29-revert-custom-integrations-fix
- Loading branch information
Showing
246 changed files
with
5,111 additions
and
1,927 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
[[cases-api-get-status]] | ||
== Get case status API | ||
++++ | ||
<titleabbrev>Get case status</titleabbrev> | ||
++++ | ||
|
||
Returns the number of cases that are open, closed, and in progress. | ||
|
||
deprecated::[8.1.0] | ||
|
||
=== Request | ||
|
||
`GET <kibana host>:<port>/api/cases/status` | ||
|
||
`GET <kibana host>:<port>/s/<space_id>/api/cases/status` | ||
|
||
=== Prerequisite | ||
|
||
You must have `read` privileges for the *Cases* feature in the *Management*, | ||
*{observability}*, or *Security* section of the | ||
<<kibana-feature-privileges,{kib} feature privileges>>, depending on the | ||
`owner` of the cases you're seeking. | ||
|
||
=== Path parameters | ||
|
||
<space_id>:: | ||
(Optional, string) An identifier for the space. If it is not specified, the | ||
default space is used. | ||
|
||
=== Query parameters | ||
|
||
`owner`:: | ||
(Optional, string or array of strings) A filter to limit the retrieved case | ||
statistics to a specific set of applications. Valid values are: `cases`, | ||
`observability`, and `securitySolution`. If this parameter is omitted, the | ||
response contains all cases that the user has access to read. | ||
|
||
=== Response code | ||
|
||
`200`:: | ||
Indicates a successful call. | ||
|
||
=== Example | ||
|
||
[source,sh] | ||
-------------------------------------------------- | ||
GET api/cases/status | ||
-------------------------------------------------- | ||
// KIBANA | ||
|
||
The API returns the following type of information: | ||
|
||
[source,json] | ||
-------------------------------------------------- | ||
{ | ||
"count_open_cases": 27, | ||
"count_in_progress_cases": 50, | ||
"count_closed_cases": 1198, | ||
} | ||
-------------------------------------------------- |
16 changes: 16 additions & 0 deletions
16
...development/core/server/kibana-plugin-core-server.exposedtobrowserdescriptor.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-server](./kibana-plugin-core-server.md) > [ExposedToBrowserDescriptor](./kibana-plugin-core-server.exposedtobrowserdescriptor.md) | ||
|
||
## ExposedToBrowserDescriptor type | ||
|
||
Type defining the list of configuration properties that will be exposed on the client-side Object properties can either be fully exposed | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export declare type ExposedToBrowserDescriptor<T> = { | ||
[Key in keyof T]?: T[Key] extends Maybe<any[]> ? boolean : T[Key] extends Maybe<object> ? // can be nested for objects | ||
ExposedToBrowserDescriptor<T[Key]> | boolean : boolean; | ||
}; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
"dashboarding" | ||
], | ||
"private": true, | ||
"version": "8.2.0", | ||
"version": "8.3.0", | ||
"branch": "main", | ||
"types": "./kibana.d.ts", | ||
"tsdocMetadata": "./build/tsdoc-metadata.json", | ||
|
@@ -104,7 +104,7 @@ | |
"@elastic/apm-rum": "^5.10.2", | ||
"@elastic/apm-rum-react": "^1.3.4", | ||
"@elastic/apm-synthtrace": "link:bazel-bin/packages/elastic-apm-synthtrace", | ||
"@elastic/charts": "45.0.1", | ||
"@elastic/charts": "45.1.1", | ||
"@elastic/datemath": "link:bazel-bin/packages/elastic-datemath", | ||
"@elastic/elasticsearch": "npm:@elastic/[email protected]", | ||
"@elastic/ems-client": "8.2.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.