info.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. // Copyright 2016 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. package version
  14. import (
  15. "bytes"
  16. "fmt"
  17. "runtime"
  18. "strings"
  19. "text/template"
  20. "github.com/prometheus/client_golang/prometheus"
  21. )
  22. // Build information. Populated at build-time.
  23. var (
  24. Version string
  25. Revision string
  26. Branch string
  27. BuildUser string
  28. BuildDate string
  29. GoVersion = runtime.Version()
  30. )
  31. // NewCollector returns a collector which exports metrics about current version information.
  32. func NewCollector(program string) *prometheus.GaugeVec {
  33. buildInfo := prometheus.NewGaugeVec(
  34. prometheus.GaugeOpts{
  35. Namespace: program,
  36. Name: "build_info",
  37. Help: fmt.Sprintf(
  38. "A metric with a constant '1' value labeled by version, revision, branch, and goversion from which %s was built.",
  39. program,
  40. ),
  41. },
  42. []string{"version", "revision", "branch", "goversion"},
  43. )
  44. buildInfo.WithLabelValues(Version, Revision, Branch, GoVersion).Set(1)
  45. return buildInfo
  46. }
  47. // versionInfoTmpl contains the template used by Info.
  48. var versionInfoTmpl = `
  49. {{.program}}, version {{.version}} (branch: {{.branch}}, revision: {{.revision}})
  50. build user: {{.buildUser}}
  51. build date: {{.buildDate}}
  52. go version: {{.goVersion}}
  53. `
  54. // Print returns version information.
  55. func Print(program string) string {
  56. m := map[string]string{
  57. "program": program,
  58. "version": Version,
  59. "revision": Revision,
  60. "branch": Branch,
  61. "buildUser": BuildUser,
  62. "buildDate": BuildDate,
  63. "goVersion": GoVersion,
  64. }
  65. t := template.Must(template.New("version").Parse(versionInfoTmpl))
  66. var buf bytes.Buffer
  67. if err := t.ExecuteTemplate(&buf, "version", m); err != nil {
  68. panic(err)
  69. }
  70. return strings.TrimSpace(buf.String())
  71. }
  72. // Info returns version, branch and revision information.
  73. func Info() string {
  74. return fmt.Sprintf("(version=%s, branch=%s, revision=%s)", Version, Branch, Revision)
  75. }
  76. // BuildContext returns goVersion, buildUser and buildDate information.
  77. func BuildContext() string {
  78. return fmt.Sprintf("(go=%s, user=%s, date=%s)", GoVersion, BuildUser, BuildDate)
  79. }