31
31
BuildUser string
32
32
BuildDate string
33
33
GoVersion = runtime .Version ()
34
+ GoOS = runtime .GOOS
35
+ GoArch = runtime .GOARCH
34
36
)
35
37
36
38
// NewCollector returns a collector that exports metrics about current version
@@ -41,14 +43,16 @@ func NewCollector(program string) prometheus.Collector {
41
43
Namespace : program ,
42
44
Name : "build_info" ,
43
45
Help : fmt .Sprintf (
44
- "A metric with a constant '1' value labeled by version, revision, branch, and goversion from which %s was built." ,
46
+ "A metric with a constant '1' value labeled by version, revision, branch, goversion from which %s was built, and the goos and goarch for the build ." ,
45
47
program ,
46
48
),
47
49
ConstLabels : prometheus.Labels {
48
50
"version" : Version ,
49
51
"revision" : getRevision (),
50
52
"branch" : Branch ,
51
53
"goversion" : GoVersion ,
54
+ "goos" : GoOS ,
55
+ "goarch" : GoArch ,
52
56
},
53
57
},
54
58
func () float64 { return 1 },
@@ -74,7 +78,7 @@ func Print(program string) string {
74
78
"buildUser" : BuildUser ,
75
79
"buildDate" : BuildDate ,
76
80
"goVersion" : GoVersion ,
77
- "platform" : runtime . GOOS + "/" + runtime . GOARCH ,
81
+ "platform" : GoOS + "/" + GoArch ,
78
82
}
79
83
t := template .Must (template .New ("version" ).Parse (versionInfoTmpl ))
80
84
@@ -90,7 +94,7 @@ func Info() string {
90
94
return fmt .Sprintf ("(version=%s, branch=%s, revision=%s)" , Version , Branch , getRevision ())
91
95
}
92
96
93
- // BuildContext returns goVersion, buildUser and buildDate information.
97
+ // BuildContext returns goVersion, platform, buildUser and buildDate information.
94
98
func BuildContext () string {
95
- return fmt .Sprintf ("(go=%s, user=%s, date=%s)" , GoVersion , BuildUser , BuildDate )
99
+ return fmt .Sprintf ("(go=%s, platform=%s, user=%s, date=%s)" , GoVersion , GoOS + "/" + GoArch , BuildUser , BuildDate )
96
100
}
0 commit comments