获取基本状态 API

编辑

此 API 使您能够检查基本许可证的状态。

请求

编辑

GET /_license/basic_status

描述

编辑

为了启动基本许可证,您当前必须没有基本许可证。

有关不同类型许可证的更多信息,请参阅 https://elastic.ac.cn/subscriptions

授权

编辑

您必须具有 monitor 集群权限才能使用此 API。有关更多信息,请参阅 安全权限

示例

编辑

以下示例检查您是否有资格启动基本许可证

resp = client.license.get_basic_status()
print(resp)
response = client.license.get_basic_status
puts response
const response = await client.license.getBasicStatus();
console.log(response);
GET /_license/basic_status

示例响应

{
  "eligible_to_start_basic": true
}