Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

Commit

Permalink
feat: implement support for multimetric data
Browse files Browse the repository at this point in the history
  • Loading branch information
omrozowicz-splunk committed Aug 18, 2021
1 parent 52a6812 commit ce3dfe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions splunk_connect_for_snmp_mib_server/snmp_mib_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def main():
parser.add_argument(
"-l",
"--loglevel",
default="debug",
default="info",
help="Provide logging level. Example --loglevel debug, default=warning",
)
parser.add_argument(
Expand All @@ -49,7 +49,7 @@ def main():
parser.add_argument(
"--hec_threads", default=10, help="Max http worker thread count", type=int
)
parser.add_argument("-c", "--config", default="../config.yaml", help="Config File")
parser.add_argument("-c", "--config", default="config.yaml", help="Config File")
args = parser.parse_args()
log_level = args.loglevel.upper()
config_file = args.config
Expand Down

0 comments on commit ce3dfe0

Please sign in to comment.