|
|
|
@ -37,6 +37,8 @@ import (
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
azureLabel = model.MetaLabelPrefix + "azure_"
|
|
|
|
|
azureLabelSubscriptionID = azureLabel + "subscription_id"
|
|
|
|
|
azureLabelTenantID = azureLabel + "tenant_id"
|
|
|
|
|
azureLabelMachineID = azureLabel + "machine_id"
|
|
|
|
|
azureLabelMachineResourceGroup = azureLabel + "machine_resource_group"
|
|
|
|
|
azureLabelMachineName = azureLabel + "machine_name"
|
|
|
|
@ -332,6 +334,8 @@ func (d *Discovery) refresh() (tg *targetgroup.Group, err error) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
labels := model.LabelSet{
|
|
|
|
|
azureLabelSubscriptionID: model.LabelValue(d.cfg.SubscriptionID),
|
|
|
|
|
azureLabelTenantID: model.LabelValue(d.cfg.TenantID),
|
|
|
|
|
azureLabelMachineID: model.LabelValue(vm.ID),
|
|
|
|
|
azureLabelMachineName: model.LabelValue(vm.Name),
|
|
|
|
|
azureLabelMachineOSType: model.LabelValue(vm.OsType),
|
|
|
|
|