discovery: fix some function names in comment

Signed-off-by: hongmengning <go@before.tech>
pull/15449/head
hongmengning 2024-11-25 17:33:04 +08:00
parent 872e2db2a9
commit 2a1b940ae4
1 changed files with 2 additions and 2 deletions

View File

@ -241,7 +241,7 @@ func (d *Discovery) shouldWatch(name string, tags []string) bool {
return d.shouldWatchFromName(name) && d.shouldWatchFromTags(tags) return d.shouldWatchFromName(name) && d.shouldWatchFromTags(tags)
} }
// shouldWatch returns whether the service of the given name should be watched based on its name. // shouldWatchFromName returns whether the service of the given name should be watched based on its name.
func (d *Discovery) shouldWatchFromName(name string) bool { func (d *Discovery) shouldWatchFromName(name string) bool {
// If there's no fixed set of watched services, we watch everything. // If there's no fixed set of watched services, we watch everything.
if len(d.watchedServices) == 0 { if len(d.watchedServices) == 0 {
@ -256,7 +256,7 @@ func (d *Discovery) shouldWatchFromName(name string) bool {
return false return false
} }
// shouldWatch returns whether the service of the given name should be watched based on its tags. // shouldWatchFromTags returns whether the service of the given name should be watched based on its tags.
// This gets called when the user doesn't specify a list of services in order to avoid watching // This gets called when the user doesn't specify a list of services in order to avoid watching
// *all* services. Details in https://github.com/prometheus/prometheus/pull/3814 // *all* services. Details in https://github.com/prometheus/prometheus/pull/3814
func (d *Discovery) shouldWatchFromTags(tags []string) bool { func (d *Discovery) shouldWatchFromTags(tags []string) bool {