mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Add readme for kubernetes security (#138663)
This commit is contained in:
parent
a8d00100a5
commit
33ae517f90
1 changed files with 39 additions and 1 deletions
|
@ -1,3 +1,41 @@
|
|||
# Kubernetes Security
|
||||
This plugin provides interactive visualizations of your Kubernetes workload and session data.
|
||||
|
||||
(under construction)
|
||||
## Overview
|
||||
Allow users to explore the data stream from k8s environment that being monitored by Elastic Agent(+ endpoint integration) in a session view with cloud and k8s context. For more context, see internal [doc](https://github.com/elastic/security-team/issues/3337).
|
||||
|
||||
This plugin is currently being used as a part of Security Solution features under the `/app/security/kubernetes` page.
|
||||
|
||||
## API
|
||||
|
||||
#### `getKubernetesPage`
|
||||
Returns the kubernetes page.
|
||||
Parameters
|
||||
| Property | Description | Type |
|
||||
| ----------------------- | ----------------- | ------ |
|
||||
| kubernetesSecurityDeps | Parameters object | object |
|
||||
|
||||
`kubernetesSecurityDeps`
|
||||
| Property | Description | Type |
|
||||
| ------------------- | ------------------------------------------------------------- | --------- |
|
||||
| filter | The global filter component used across pages in Kibana | ReactNode |
|
||||
| renderSessionsView | Function to render sessions view table | function |
|
||||
| indexPattern | Index pattern used for the data source in the Kubernetes page | object |
|
||||
| globalFilter | Includes query and timerange used for filtering | object |
|
||||
|
||||
`indexPattern`
|
||||
| Property | Description | Type |
|
||||
| --------- | ----------------------------------- | -------------------------------------------- |
|
||||
| fields | A list of `FieldSpec` | `FieldSpec[]` from `@kbn/data-plugin/common` |
|
||||
| title | Index pattern string representation | string |
|
||||
|
||||
`globalFilter`
|
||||
| Property | Description | Type |
|
||||
| ----------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ----------------- |
|
||||
| filterQuery | Stringified Elasticsearch filter query. See [doc](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-filter-context.html). | Optional, string |
|
||||
| startDate | Start date time of timerange filter, in ISO format | string |
|
||||
| endDate | End date time of timerange filter, in ISO format | string |
|
||||
|
||||
|
||||
## Page preview
|
||||

|
Loading…
Add table
Add a link
Reference in a new issue