Skip to main content

process_threads_slots

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

Overview

Nameprocess_threads_slots
TypeResource
Idazure.app_service.process_threads_slots

Fields

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTname, processId, resourceGroupName, slot, 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_slots
WHERE name = '{{ name }}'
AND processId = '{{ processId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND slot = '{{ slot }}'
AND subscriptionId = '{{ subscriptionId }}';