vw_packet_captures
Creates, updates, deletes, gets or lists a vw_packet_captures
resource.
Overview
Name | vw_packet_captures |
Type | View |
Id | azure.mobile_network.vw_packet_captures |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.reason') as "reason",
JSON_EXTRACT(properties, '$.captureStartTime') as "capture_start_time",
JSON_EXTRACT(properties, '$.networkInterfaces') as "network_interfaces",
JSON_EXTRACT(properties, '$.bytesToCapturePerPacket') as "bytes_to_capture_per_packet",
JSON_EXTRACT(properties, '$.totalBytesPerSession') as "total_bytes_per_session",
JSON_EXTRACT(properties, '$.timeLimitInSeconds') as "time_limit_in_seconds",
JSON_EXTRACT(properties, '$.outputFiles') as "output_files",
subscriptionId,
resourceGroupName,
packetCoreControlPlaneName,
packetCaptureName
FROM azure.mobile_network.packet_captures
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND packetCoreControlPlaneName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.reason') as "reason",
json_extract_path_text(properties, '$.captureStartTime') as "capture_start_time",
json_extract_path_text(properties, '$.networkInterfaces') as "network_interfaces",
json_extract_path_text(properties, '$.bytesToCapturePerPacket') as "bytes_to_capture_per_packet",
json_extract_path_text(properties, '$.totalBytesPerSession') as "total_bytes_per_session",
json_extract_path_text(properties, '$.timeLimitInSeconds') as "time_limit_in_seconds",
json_extract_path_text(properties, '$.outputFiles') as "output_files",
subscriptionId,
resourceGroupName,
packetCoreControlPlaneName,
packetCaptureName
FROM azure.mobile_network.packet_captures
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND packetCoreControlPlaneName = 'replace-me';