Put Analytics Collection

Put Analytics Collection

This functionality is in beta and is subject to change. The design and code is less mature than official GA features and is being provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features.

New API reference

For the most up-to-date API details, refer to Behavioral analytics APIs.

Creates a Behavioral Analytics Collection.

Request

PUT _application/analytics/<name>

Path parameters

<name>

(Required, string)

Prerequisites

Requires the manage_behavioral_analytics cluster privilege.

Response codes

400

Analytics Collection <name> exists.

Examples

The following example creates a new Analytics Collection called my_analytics_collection:

  1. resp = client.search_application.put_behavioral_analytics(
  2. name="my_analytics_collection",
  3. )
  4. print(resp)
  1. const response = await client.searchApplication.putBehavioralAnalytics({
  2. name: "my_analytics_collection",
  3. });
  4. console.log(response);
  1. PUT _application/analytics/my_analytics_collection