Skip to main content

heat_maps

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

Overview

Nameheat_maps
TypeResource
Idazure.traffic_manager.heat_maps

Fields

NameDatatypeDescription
end_timetextfield from the properties object
endpointstextfield from the properties object
heatMapTypetextfield from the properties object
profileNametextfield from the properties object
resourceGroupNametextfield from the properties object
start_timetextfield from the properties object
subscriptionIdtextfield from the properties object
traffic_flowstextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTheatMapType, profileName, resourceGroupName, subscriptionIdGets latest heatmap for Traffic Manager profile.

SELECT examples

Gets latest heatmap for Traffic Manager profile.

SELECT
end_time,
endpoints,
heatMapType,
profileName,
resourceGroupName,
start_time,
subscriptionId,
traffic_flows
FROM azure.traffic_manager.vw_heat_maps
WHERE heatMapType = '{{ heatMapType }}'
AND profileName = '{{ profileName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';