Skip to main content

watchers_troubleshooting_results

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

Overview

Namewatchers_troubleshooting_results
TypeResource
Idazure.network.watchers_troubleshooting_results

Fields

NameDatatypeDescription
codestringThe result code of the troubleshooting.
endTimestringThe end time of the troubleshooting.
resultsarrayInformation from troubleshooting.
startTimestringThe start time of the troubleshooting.

Methods

NameAccessible byRequired ParamsDescription
getSELECTnetworkWatcherName, resourceGroupName, subscriptionId, data__targetResourceIdGet the last completed troubleshooting result on a specified resource.

SELECT examples

Get the last completed troubleshooting result on a specified resource.

SELECT
code,
endTime,
results,
startTime
FROM azure.network.watchers_troubleshooting_results
WHERE networkWatcherName = '{{ networkWatcherName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__targetResourceId = '{{ data__targetResourceId }}';