Skip to content
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,15 @@ A successful API call will return a `202 Accepted` response with an empty body.
To configure data ingestion from the console, go to **Dev Tools** in the navigation menu and run the following command:

```console
POST kbn:/internal/profiling/setup/es_resources
POST kbn:/api/profiling/setup/es_resources
{}
```

To configure data ingestion programmatically using a standalone HTTP client (e.g., `curl`), run the following command:

```console
curl -u elastic:<PASSWORD> -H "kbn-xsrf: true" -H "Content-Type: application/json" \
--data "{}" "https://<kibana-host>:<kibana-port>/internal/profiling/setup/es_resources"
--data "{}" "https://<kibana-host>:<kibana-port>/api/profiling/setup/es_resources"
```


Expand Down