mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Add Azure-SD metrics (#2099)
This commit is contained in:
parent
17691d9141
commit
00e486a05b
|
@ -23,6 +23,7 @@ import (
|
||||||
"github.com/Azure/azure-sdk-for-go/arm/network"
|
"github.com/Azure/azure-sdk-for-go/arm/network"
|
||||||
"github.com/Azure/go-autorest/autorest/azure"
|
"github.com/Azure/go-autorest/autorest/azure"
|
||||||
|
|
||||||
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
"github.com/prometheus/common/log"
|
"github.com/prometheus/common/log"
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
"golang.org/x/net/context"
|
"golang.org/x/net/context"
|
||||||
|
@ -41,6 +42,26 @@ const (
|
||||||
azureLabelMachineTag = azureLabel + "machine_tag_"
|
azureLabelMachineTag = azureLabel + "machine_tag_"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
azureSDScrapeFailuresCount = prometheus.NewCounter(
|
||||||
|
prometheus.CounterOpts{
|
||||||
|
Namespace: namespace,
|
||||||
|
Name: "azure_sd_scrape_failures_total",
|
||||||
|
Help: "Number of Azure-SD scrape failures.",
|
||||||
|
})
|
||||||
|
azureSDScrapeDuration = prometheus.NewSummary(
|
||||||
|
prometheus.SummaryOpts{
|
||||||
|
Namespace: namespace,
|
||||||
|
Name: "azure_sd_scrape_duration_seconds",
|
||||||
|
Help: "The duration of a Azure-SD scrape in seconds.",
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
prometheus.MustRegister(azureSDScrapeDuration)
|
||||||
|
prometheus.MustRegister(azureSDScrapeFailuresCount)
|
||||||
|
}
|
||||||
|
|
||||||
// AzureDiscovery periodically performs Azure-SD requests. It implements
|
// AzureDiscovery periodically performs Azure-SD requests. It implements
|
||||||
// the TargetProvider interface.
|
// the TargetProvider interface.
|
||||||
type AzureDiscovery struct {
|
type AzureDiscovery struct {
|
||||||
|
@ -135,8 +156,15 @@ func newAzureResourceFromID(id string) (azureResource, error) {
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ad *AzureDiscovery) refresh() (*config.TargetGroup, error) {
|
func (ad *AzureDiscovery) refresh() (tg *config.TargetGroup, err error) {
|
||||||
tg := &config.TargetGroup{}
|
t0 := time.Now()
|
||||||
|
defer func() {
|
||||||
|
azureSDScrapeDuration.Observe(time.Since(t0).Seconds())
|
||||||
|
if err != nil {
|
||||||
|
azureSDScrapeFailuresCount.Inc()
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
tg = &config.TargetGroup{}
|
||||||
client, err := createAzureClient(*ad.cfg)
|
client, err := createAzureClient(*ad.cfg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return tg, fmt.Errorf("could not create Azure client: %s", err)
|
return tg, fmt.Errorf("could not create Azure client: %s", err)
|
||||||
|
|
Loading…
Reference in a new issue