Yes.
You use the "naming schema" to name the snapshot that will be replicated. Here's an excerpt from the manual:
Naming Schemas
The
Naming Schema determines how automated snapshot names are generated. A valid schema requires the
%Y (year),
%m (month),
%d (day),
%H (hour), and
%M (minute) time strings, but you can add more identifiers to the schema too, using any identifiers from the Python
strptime function.
This uses some letters differently from POSIX (Unix) time functions. For example, including %z (time zone) ensures that snapshots do not have naming conflicts when daylight time starts and ends, and
%S (second) adds finer time granularity.
Examples:
Naming Scheme | Snapshot Names Look Like |
---|
replicationsnaps-1wklife-%Y%m%d_%H:%M | replicationsnaps-1wklife-20210120_00:00, replicationsnaps-1wklife-20210120_06:00 |
autosnap_%Y.%m.%d-%H.%M.%S-%z | autosnap_2021.01.20-00.00.00-EST, autosnap_2021.01.20-06.00.00-EST |
Here's an example from my target machine to which my source machine replicates snapshots. The snapshot name is preserved intact.
In this case it shows the date (yyyy-mm-dd) and time (hh-mm) the snapshot was taken and the life (2 weeks).
View attachment 49206
Look at Snapshots and Replication in the manual for the full description.