Use runtime.Version() instead of injected version

This commit is contained in:
Julius Volz 2016-04-08 14:21:47 +02:00
parent 93070012f9
commit 839fd799a1
1 changed files with 6 additions and 2 deletions

View File

@ -13,7 +13,11 @@
package version
import "github.com/prometheus/client_golang/prometheus"
import (
"runtime"
"github.com/prometheus/client_golang/prometheus"
)
// Build information. Populated at build-time.
var (
@ -22,7 +26,7 @@ var (
Branch string
BuildUser string
BuildDate string
GoVersion string
GoVersion = runtime.Version()
)
// Map provides the iterable version information.