usage_info
Creates, updates, deletes, gets or lists a usage_info
resource.
Overview
Name | usage_info |
Type | Resource |
Id | sumologic.monitors.usage_info |
Fields
The following fields are returned by SELECT
queries:
- getMonitorUsageInfo
MonitorUsageInfo has been retrieved successfully.
Name | Datatype | Description |
---|---|---|
limit | integer | The limit of active Logs/Metrics monitors. |
monitorType | string | The type of monitor usage info (Logs or Metrics). (example: Logs) |
total | integer | The total number of monitors created. (Including both active and disabled Logs/Metrics monitors) |
usage | integer | Current number of active Logs/Metrics monitors. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getMonitorUsageInfo | select | region | Get the current number and the allowed number of log and metrics monitors. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
region | string | SumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2) |
SELECT
examples
- getMonitorUsageInfo
Get the current number and the allowed number of log and metrics monitors.
SELECT
limit,
monitorType,
total,
usage
FROM sumologic.monitors.usage_info
WHERE region = '{{ region }}' -- required
;