pushURL=flagutil.NewArrayString("pushmetrics.url","Optional URL to push metrics exposed at /metrics page. See https://docs.victoriametrics.com/#push-metrics . "+
pushInterval=flag.Duration("pushmetrics.interval",10*time.Second,"Interval for pushing metrics to every -pushmetrics.url")
pushExtraLabel=flagutil.NewArrayString("pushmetrics.extraLabel","Optional labels to add to metrics pushed to every -pushmetrics.url . "+
`For example, -pushmetrics.extraLabel='instance="foo"' adds instance="foo" label to all the metrics pushed to every -pushmetrics.url`)
pushHeader=flagutil.NewArrayString("pushmetrics.header","Optional HTTP request header to send to every -pushmetrics.url . "+
"For example, -pushmetrics.header='Authorization: Basic foobar' adds 'Authorization: Basic foobar' header to every request to every -pushmetrics.url")
disableCompression=flag.Bool("pushmetrics.disableCompression",false,"Whether to disable request body compression when pushing metrics to every -pushmetrics.url")