component_quota_status
Creates, updates, deletes, gets or lists a component_quota_status
resource.
Overview
Name | component_quota_status |
Type | Resource |
Id | azure.application_insights.component_quota_status |
Fields
The following fields are returned by SELECT
queries:
- get
An Application Insights component daily data volume cap status definition.
Name | Datatype | Description |
---|---|---|
AppId | string | The Application ID for the Application Insights component. |
ExpirationTime | string | Date and time when the daily data volume cap will be reset, and data ingestion will resume. |
ShouldBeThrottled | boolean | The daily data volume cap is met, and data ingestion will be stopped. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , subscriptionId , resourceName | Returns daily data volume cap (quota) status for an Application Insights component. |
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 |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
resourceName | string | The name of the Application Insights component resource. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
Returns daily data volume cap (quota) status for an Application Insights component.
SELECT
AppId,
ExpirationTime,
ShouldBeThrottled
FROM azure.application_insights.component_quota_status
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;