From 4be19b8e1d56f28b0c7055c409c196eb45e1dff3 Mon Sep 17 00:00:00 2001 From: Benjamin Wiegand <126627496+Benjamin-Wiegand@users.noreply.github.com> Date: Wed, 22 May 2024 14:07:03 -0700 Subject: [PATCH] add version identifier --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index a17195a..247825d 100644 --- a/main.py +++ b/main.py @@ -22,10 +22,11 @@ import os import traceback NAMESPACE = 'ilo' +VERSION = '1.0.0' arg_parser = argparse.ArgumentParser( 'ilo_exporter', - description='A fast(er) prometheus exporter for applicable HP servers using SNMP via the ILO controller.', + description='A fast(er) prometheus exporter for applicable HP servers using SNMP via the ILO controller. v%s' % VERSION, ) arg_parser.add_argument('-i', '--ilo-address', help='ILO IP address to scan.', required=True)