Clean up dev docs (#124271)

This commit is contained in:
Stacey Gammon 2022-02-03 10:09:10 -05:00 committed by GitHub
parent ad7c8de75a
commit 4a63ab9b3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 5 deletions

View file

@ -2,7 +2,7 @@
id: kibDevDocsApiWelcome
slug: /kibana-dev-docs/api-meta/welcome
title: Welcome
summary: How to use our automatically generated API documentation
description: How to use our automatically generated API documentation
date: 2021-02-25
tags: ['kibana','dev', 'contributor', 'api docs']
---

View file

@ -2,14 +2,14 @@
id: kibDevAddData
slug: /kibana-dev-docs/getting-started/sample-data
title: Add data
summary: Learn how to add data to Kibana
description: Learn how to add data to Kibana
date: 2021-08-11
tags: ['kibana', 'onboarding', 'dev', 'architecture', 'tutorials']
---
Building a feature and need an easy way to test it out with some data? Below are three options.
## 1. Add Sample Data from the UI
## Sample data
Kibana ships with sample data that you can install at the click of the button. If you are building a feature and need some data to test it out with, sample data is a great option. The only limitation is that this data will not work for Security or Observability solutions (see [#62962](https://github.com/elastic/kibana/issues/62962)).
@ -20,7 +20,7 @@ Kibana ships with sample data that you can install at the click of the button. I
![Sample Data](../assets/sample_data.png)
## CSV Upload
## CSV upload
1. If you don't have any data, navigate to Stack Management > Index Patterns and click the link to the uploader. If you do have data, navigate to the **Machine Learning** application.
2. Click on the **Data Visualizer** tab.
@ -35,3 +35,11 @@ The makelogs script generates sample web server logs. Make sure Elasticsearch is
```sh
node scripts/makelogs --auth <username>:<password>
```
## Realistic solution data
<DocCallOut color="warning" title="Internal only">
Security and Observability solution applications only work if data exists in particularly named indices, abiding by our [ECS format](https://www.elastic.co/guide/en/ecs/current/index.html). If you would like to use these applications with realistic data, check out the [oblt_cli tool](https://github.com/elastic/observability-test-environments/blob/master/tools/oblt_cli/README.md). This tool sets you up to connect to a remote Elasticsearch cluster that contains the appropriate data via CCS.
</DocCallOut>

View file

@ -2,7 +2,7 @@
id: kibServerAndCoreComponents
slug: /kibana-dev-docs/core-intro
title: Kibana Server and Core components
summary: An introduction to the Kibana server and core components.
description: An introduction to the Kibana server and core components.
date: 2021-02-26
tags: ['kibana','onboarding', 'dev', 'architecture']
---