mirror of
https://github.com/recklessop/Zerto_Exporter.git
synced 2026-07-02 23:53:13 -04:00
7a45a9c49a
- Add VmSourceVRA to _VM_LABELS, populated from vm['OwningHostName'] resolved to a VRA name via a host→VRA lookup built from zvm.vras() - VmRecoveryVRA now also resolves to the actual VRA name (e.g. Z-VRA-192.168.50.21) instead of the raw ESXi host IP - Cloud-target VPGs (Azure/AWS) correctly emit VmRecoveryVRA="" since there is no local VRA on the recovery side - Bump version to 3.1.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
219 B
Python
11 lines
219 B
Python
# version.py
|
|
VERSION = "3.1.0"
|
|
|
|
def main():
|
|
# Put your main program code here
|
|
print(VERSION)
|
|
|
|
if __name__ == '__main__':
|
|
# This code will be executed only when the file is run as the main program
|
|
main()
|