Merge pull request #15328 from prometheus/deadcode
chore: Remove dead code
This commit is contained in:
		
						commit
						96c2fe04e7
					
				|  | @ -190,7 +190,6 @@ type flagConfig struct { | |||
| 	queryConcurrency            int | ||||
| 	queryMaxSamples             int | ||||
| 	RemoteFlushDeadline         model.Duration | ||||
| 	nameEscapingScheme          string | ||||
| 	maxNotificationsSubscribers int | ||||
| 
 | ||||
| 	enableAutoReload   bool | ||||
|  | @ -551,15 +550,6 @@ func main() { | |||
| 		os.Exit(1) | ||||
| 	} | ||||
| 
 | ||||
| 	if cfg.nameEscapingScheme != "" { | ||||
| 		scheme, err := model.ToEscapingScheme(cfg.nameEscapingScheme) | ||||
| 		if err != nil { | ||||
| 			fmt.Fprintf(os.Stderr, `Invalid name escaping scheme: %q; Needs to be one of "values", "underscores", or "dots"`, cfg.nameEscapingScheme) | ||||
| 			os.Exit(1) | ||||
| 		} | ||||
| 		model.NameEscapingScheme = scheme | ||||
| 	} | ||||
| 
 | ||||
| 	if agentMode && len(serverOnlyFlags) > 0 { | ||||
| 		fmt.Fprintf(os.Stderr, "The following flag(s) can not be used in agent mode: %q", serverOnlyFlags) | ||||
| 		os.Exit(3) | ||||
|  |  | |||
|  | @ -94,8 +94,6 @@ type Options struct { | |||
| 	skipOffsetting bool | ||||
| } | ||||
| 
 | ||||
| const DefaultNameEscapingScheme = model.ValueEncodingEscaping | ||||
| 
 | ||||
| // Manager maintains a set of scrape pools and manages start/stop cycles
 | ||||
| // when receiving new target groups from the discovery manager.
 | ||||
| type Manager struct { | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue