Class DeleteSampleConfigurationAction

java.lang.Object
org.elasticsearch.action.ActionType<AcknowledgedResponse>
org.elasticsearch.action.admin.indices.sampling.DeleteSampleConfigurationAction

public class DeleteSampleConfigurationAction extends ActionType<AcknowledgedResponse>
Action for deleting sampling configurations from indices.

This action allows administrators to remove sampling configurations from an index or data stream. When a sampling configuration is deleted, any associated in-memory storage and sampling state is cleaned up.

The action name is "indices:admin/sample/config/delete" and it returns an AcknowledgedResponse to indicate whether the configuration was successfully removed.

Usage examples:
  • DELETE /logs/_sample/config - Remove sampling configuration from the "logs" index
See Also: