Merge pull request #1583 from prometheus/fix

gocollector: Tiny fix for help message with runtime/metrics source.
This commit is contained in:
Arthur Silva Sens 2024-08-16 08:54:51 -03:00 committed by GitHub
commit 989a6d0a1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ func NewGoCollector(opts ...func(o *internal.GoCollectorOptions)) Collector {
} }
func attachOriginalName(desc, origName string) string { func attachOriginalName(desc, origName string) string {
return fmt.Sprintf("%s Sourced from %s", desc, origName) return fmt.Sprintf("%s Sourced from %s.", desc, origName)
} }
// Describe returns all descriptions of the collector. // Describe returns all descriptions of the collector.