Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexZzz committed Apr 9, 2021
1 parent a395114 commit 6d214ce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libvirt_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ package main
import (
"encoding/xml"
"github.com/AlexZzz/libvirt-exporter/libvirtSchema"
"libvirt.org/libvirt-go"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"gopkg.in/alecthomas/kingpin.v2"
"libvirt.org/libvirt-go"
"log"
"net/http"
"os"
Expand Down Expand Up @@ -76,10 +76,10 @@ var (
nil)
libvirtDomainVcpuDelayDesc = prometheus.NewDesc(
prometheus.BuildFQName("libvirt", "domain_vcpu", "delay_seconds_total"),
"Amount of CPU time used by the domain's VCPU, in seconds."+
"Vcpu's delay metric. Time the vcpu thread was enqueued by the "+
"host scheduler, but was waiting in the queue instead of running. "+
"Exposed to the VM as a steal time.",
"Amount of CPU time used by the domain's VCPU, in seconds. "+
"Vcpu's delay metric. Time the vcpu thread was enqueued by the "+
"host scheduler, but was waiting in the queue instead of running. "+
"Exposed to the VM as a steal time.",
[]string{"domain", "vcpu"},
nil)
libvirtDomainVcpuStateDesc = prometheus.NewDesc(
Expand Down

0 comments on commit 6d214ce

Please sign in to comment.