Skip to content

Commit a33c32f

Browse files
author
Julien Pivotto
authored
Merge pull request #374 from roidelapluie/go118vcs
go118: Get VCS info from debug.BuildInfo
2 parents 11bcb5b + 5b6c049 commit a33c32f

File tree

3 files changed

+82
-3
lines changed

3 files changed

+82
-3
lines changed

version/info.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func NewCollector(program string) prometheus.Collector {
4646
),
4747
ConstLabels: prometheus.Labels{
4848
"version": Version,
49-
"revision": Revision,
49+
"revision": getRevision(),
5050
"branch": Branch,
5151
"goversion": GoVersion,
5252
},
@@ -69,7 +69,7 @@ func Print(program string) string {
6969
m := map[string]string{
7070
"program": program,
7171
"version": Version,
72-
"revision": Revision,
72+
"revision": getRevision(),
7373
"branch": Branch,
7474
"buildUser": BuildUser,
7575
"buildDate": BuildDate,
@@ -87,7 +87,7 @@ func Print(program string) string {
8787

8888
// Info returns version, branch and revision information.
8989
func Info() string {
90-
return fmt.Sprintf("(version=%s, branch=%s, revision=%s)", Version, Branch, Revision)
90+
return fmt.Sprintf("(version=%s, branch=%s, revision=%s)", Version, Branch, getRevision())
9191
}
9292

9393
// BuildContext returns goVersion, buildUser and buildDate information.

version/info_default.go

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Copyright 2022 The Prometheus Authors
2+
// Licensed under the Apache License, Version 2.0 (the "License");
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
//
6+
// http://www.apache.org/licenses/LICENSE-2.0
7+
//
8+
// Unless required by applicable law or agreed to in writing, software
9+
// distributed under the License is distributed on an "AS IS" BASIS,
10+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
// See the License for the specific language governing permissions and
12+
// limitations under the License.
13+
14+
//go:build !go1.18
15+
// +build !go1.18
16+
17+
package version
18+
19+
func getRevision() string {
20+
return Revision
21+
}

version/info_go118.go

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
// Copyright 2022 The Prometheus Authors
2+
// Licensed under the Apache License, Version 2.0 (the "License");
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
//
6+
// http://www.apache.org/licenses/LICENSE-2.0
7+
//
8+
// Unless required by applicable law or agreed to in writing, software
9+
// distributed under the License is distributed on an "AS IS" BASIS,
10+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
// See the License for the specific language governing permissions and
12+
// limitations under the License.
13+
14+
//go:build go1.18
15+
// +build go1.18
16+
17+
package version
18+
19+
import "runtime/debug"
20+
21+
var computedRevision string
22+
23+
func getRevision() string {
24+
if Revision != "" {
25+
return Revision
26+
}
27+
return computedRevision
28+
}
29+
30+
func init() {
31+
computedRevision = computeRevision()
32+
}
33+
34+
func computeRevision() string {
35+
var (
36+
rev = "unknown"
37+
modified bool
38+
)
39+
40+
buildInfo, ok := debug.ReadBuildInfo()
41+
if !ok {
42+
return rev
43+
}
44+
for _, v := range buildInfo.Settings {
45+
if v.Key == "vcs.revision" {
46+
rev = v.Value
47+
}
48+
if v.Key == "vcs.modified" {
49+
if v.Value == "true" {
50+
modified = true
51+
}
52+
}
53+
}
54+
if modified {
55+
return rev + "-modified"
56+
}
57+
return rev
58+
}

0 commit comments

Comments
 (0)