Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions api/kibana/kibana-api-overview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
navigation_title: Spaces
---
# Kibana spaces

Spaces enable you to organize your dashboards and other saved objects into meaningful categories.
You can use the default space or create your own spaces.

To run APIs in non-default spaces, you must add `s/{space_id}/` to the path.
For example:

```bash
curl -X GET "http://${KIBANA_URL}/s/marketing/api/data_views" \
-H "Authorization: ApiKey ${API_KEY}"
```

If you use the Kibana console to send API requests, it automatically adds the appropriate space identifier.

To learn more, check out [Spaces](https://www.elastic.co/docs/deploy-manage/manage-spaces).
33 changes: 33 additions & 0 deletions docset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,39 @@ max_toc_depth: 2
features:
primary-nav: true

# API Explorer (staging only). This block is consumed by docs-builder when the
# assembler-api-explorer feature flag is enabled (staging today). Production and
# other environments ignore these declarations until the rollout completes.
api:
# CloudFront remote specs — mirror https://d29hkgsdo66d1n.cloudfront.net/index.json.
# No local spec files: each key fetches remotely on serve/build. Paths: /api/<key>/
elasticsearch:
- spec: elasticsearch.json
product: elasticsearch
repository: elastic/elasticsearch-specification
elasticsearch-serverless:
- spec: elasticsearch-serverless.json
product: serverless-elasticsearch
repository: elastic/elasticsearch-specification
kibana:
- spec: kibana.yaml
product: kibana
repository: elastic/kibana
children:
- file: kibana-api-overview.md
kibana-serverless:
- spec: kibana-serverless.yaml
product: kibana
repository: elastic/kibana
cloud-connect:
- spec: cloud-connect.yml
product: ess
repository: elastic/cloud-connected-api
cloud-serverless:
- spec: elastic-cloud-serverless.yml
product: cloud-serverless
repository: elastic/serverless-api-specification

cta:
monitor-kubernetes:
button:
Expand Down
Loading