mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
6a794ec5d5
* app/{vmctl,vmalert}: update progress bar library (make vendor-update) * app/{vmctl,vmalert}: make vendor-update
16 lines
891 B
Go
16 lines
891 B
Go
package pb
|
|
|
|
var (
|
|
// Full - preset with all default available elements
|
|
// Example: 'Prefix 20/100 [-->______] 20% 1 p/s ETA 1m Suffix'
|
|
Full ProgressBarTemplate = `{{with string . "prefix"}}{{.}} {{end}}{{counters . }} {{bar . }} {{percent . }} {{speed . }} {{rtime . "ETA %s"}}{{with string . "suffix"}} {{.}}{{end}}`
|
|
|
|
// Default - preset like Full but without elapsed time
|
|
// Example: 'Prefix 20/100 [-->______] 20% 1 p/s Suffix'
|
|
Default ProgressBarTemplate = `{{with string . "prefix"}}{{.}} {{end}}{{counters . }} {{bar . }} {{percent . }} {{speed . }}{{with string . "suffix"}} {{.}}{{end}}`
|
|
|
|
// Simple - preset without speed and any timers. Only counters, bar and percents
|
|
// Example: 'Prefix 20/100 [-->______] 20% Suffix'
|
|
Simple ProgressBarTemplate = `{{with string . "prefix"}}{{.}} {{end}}{{counters . }} {{bar . }} {{percent . }}{{with string . "suffix"}} {{.}}{{end}}`
|
|
)
|