Skip to main content

process_threads

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

Overview

Nameprocess_threads
TypeResource
Idazure.app_service.process_threads

Fields

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
propertiesobjectProcessThreadInfo resource specific properties
typestringResource type.

Methods

NameAccessible byRequired ParamsDescription
listSELECTname, processId, resourceGroupName, subscriptionIdDescription for List the threads in a process by its ID for a specific scaled-out instance in a web site.

SELECT examples

Description for List the threads in a process by its ID for a specific scaled-out instance in a web site.

SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.process_threads
WHERE name = '{{ name }}'
AND processId = '{{ processId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';