VictoriaMetrics/lib/promscrape/discovery/azure
Zhu Jiekun c193e6d43e
lib/discovery/azure: fix host check in next link in Azure SD (#6915)
Previous bugfix at 49f63b2 only partially fixed pagination host validation error.

 Before this fix it was:
```
unexpected nextLink host \"management.azure.com\", expecting \"https://management.azure.com\"
```

Now we only check the `Host` without schema. 

However, when Azure respond `nextLink` in `Host:Port` format, the
`nextLink` check will fail:
```
unexpected nextLink host \"management.azure.com:443\", expecting \"management.azure.com\"
```

This pull request further relaxes the checks by only checking the
`Hostname`.

---

 related issue: https://github.com/VictoriaMetrics/VictoriaMetrics/issues/6912
2024-09-05 16:48:09 +02:00
..
api.go lib/discovery/azure: fix host check in next link in Azure SD (#6915) 2024-09-05 16:48:09 +02:00
azure.go all: replace old https://docs.victoriametrics.com/sd_configs.html url with the new one - https://docs.victoriametrics.com/sd_configs/ 2024-04-18 02:27:47 +02:00
azure_test.go lib/promscrape/discovery/azure: add __meta_azure_machine_size label in the same way as Prometheus does 2023-01-27 17:07:12 -08:00
machine.go lib/discovery/azure: fix host check in next link in Azure SD (#6915) 2024-09-05 16:48:09 +02:00
machine_test.go lib/discovery/azure: fix host check in next link in Azure SD (#6915) 2024-09-05 16:48:09 +02:00
nic.go lib/promscrape/discoveryutils: switch to native http client from fasthttp (#3568) 2023-01-05 19:34:47 -08:00