Skip to main content

troubleshooters

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

Overview

Nametroubleshooters
TypeResource
Idazure_extras.help.troubleshooters

Fields

The following fields are returned by SELECT queries:

Successful fetched Troubleshooter instance.

NameDatatypeDescription
propertiesobjectTroubleshooter Instance properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectscope, troubleshooterNameGets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created using the Create API.
createinsertscope, troubleshooterNameCreates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend signals and customer manual selections.
continueexecscope, troubleshooterNameUses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the Create API.
endexecscope, troubleshooterNameEnds the troubleshooter action
restartexecscope, troubleshooterNameRestarts the troubleshooter API using applicable troubleshooter resource name as the input.
It returns new resource name which should be used in subsequent request. The old resource name is obsolete after this API is invoked.

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
scopestringThe scope at which the operation is performed.
troubleshooterNamestringTroubleshooter resource Name.

SELECT examples

Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created using the Create API.

SELECT
properties
FROM azure_extras.help.troubleshooters
WHERE scope = '{{ scope }}' -- required
AND troubleshooterName = '{{ troubleshooterName }}' -- required
;

INSERT examples

Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend signals and customer manual selections.

INSERT INTO azure_extras.help.troubleshooters (
data__properties,
scope,
troubleshooterName
)
SELECT
'{{ properties }}',
'{{ scope }}',
'{{ troubleshooterName }}'
RETURNING
properties
;

Lifecycle Methods

Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the Create API.

EXEC azure_extras.help.troubleshooters.continue 
@scope='{{ scope }}' --required,
@troubleshooterName='{{ troubleshooterName }}' --required
@@json=
'{
"stepId": "{{ stepId }}",
"responses": "{{ responses }}"
}'
;