mirror of
https://github.com/recklessop/Zerto_Exporter.git
synced 2026-07-02 23:53:13 -04:00
94a3822353
Added Site ID and Site Name to every metric. Moved all VRA metrics to a separate thread and started collecting VRA CPU and Memory usage from vCenter API.
10 lines
218 B
Python
10 lines
218 B
Python
# version.py
|
|
VERSION = "1.2.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() |