Skip to main content

quota

Creates, updates, deletes, gets or lists a quota resource.

Overview

Namequota
TypeResource
Idsumologic.fields.quota

Fields

The following fields are returned by SELECT queries:

Current fields capacity usage (fields count).

NameDatatypeDescription
quotainteger (int32)Maximum number of fields available.
remaininginteger (int32)Current number of fields available.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getFieldQuotaselectregionEvery account has a limited number of fields available. This endpoint returns your account limitations and remaining quota.

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.

NameDatatypeDescription
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)

SELECT examples

Every account has a limited number of fields available. This endpoint returns your account limitations and remaining quota.

SELECT
quota,
remaining
FROM sumologic.fields.quota
WHERE region = '{{ region }}' -- required
;