Skip to main content

post_rules_counters

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

Overview

Namepost_rules_counters
TypeResource
Idazure_isv.paloalto.post_rules_counters

Fields

The following fields are returned by SELECT queries:

The request has succeeded.

NameDatatypeDescription
appSeenobjectapps seen
firewallNamestringfirewall name
hitCountinteger (int32)hit count
lastUpdatedTimestampstring (date-time)last updated timestamp
prioritystringpriority number
requestTimestampstring (date-time)timestamp of request
ruleListNamestringrule list name
ruleNamestringrule name
ruleStackNamestringrule Stack Name
timestampstring (date-time)timestamp of response

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectglobalRulestackName, priorityfirewallNameGet counters

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
globalRulestackNamestringGlobalRulestack resource name
prioritystringPost Rule priority
firewallNamestring

SELECT examples

Get counters

SELECT
appSeen,
firewallName,
hitCount,
lastUpdatedTimestamp,
priority,
requestTimestamp,
ruleListName,
ruleName,
ruleStackName,
timestamp
FROM azure_isv.paloalto.post_rules_counters
WHERE globalRulestackName = '{{ globalRulestackName }}' -- required
AND priority = '{{ priority }}' -- required
AND firewallName = '{{ firewallName }}'
;