storageDataPath=flag.String("storageDataPath","victoria-metrics-data","Path to VictoriaMetrics data. Must match -storageDataPath from VictoriaMetrics or vmstorage")
snapshotName=flag.String("snapshotName","","Name for the snapshot to backup. See https://github.com/VictoriaMetrics/VictoriaMetrics/blob/master/README.md#how-to-work-with-snapshots")
dst=flag.String("dst","","Where to put the backup on the remote storage. "+
"Example: gcs://bucket/path/to/backup/dir, s3://bucket/path/to/backup/dir or fs:///path/to/local/backup/dir\n"+
"-dst can point to the previous backup. In this case incremental backup is performed, i.e. only changed data is uploaded")
origin=flag.String("origin","","Optional origin directory on the remote storage with old backup for server-side copying when performing full backup. This speeds up full backups")
concurrency=flag.Int("concurrency",10,"The number of concurrent workers. Higher concurrency may reduce backup duration")
maxBytesPerSecond=flag.Int("maxBytesPerSecond",0,"The maximum upload speed. There is no limit if it is set to 0")