From e86e4f5c976a98a751a50332215e4c12438ec489 Mon Sep 17 00:00:00 2001 From: Bill Grant <69601449+billg-splunk@users.noreply.github.com> Date: Thu, 2 May 2024 12:41:51 -0400 Subject: [PATCH] fixed code view --- integration-examples/apiScripts/README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/integration-examples/apiScripts/README.md b/integration-examples/apiScripts/README.md index 6545be7..ec39b11 100644 --- a/integration-examples/apiScripts/README.md +++ b/integration-examples/apiScripts/README.md @@ -9,9 +9,18 @@ This script will allow users to insert an email address to the notifications for # getMetricsForHost.py This script is used to find all the metrics for a given host. -Usage: python3 getMetricsForHost.py -h -r -t + +Usage: + +``` +python3 getMetricsForHost.py -h -r -t +``` # muteAllAutoDetectors.py This script will mute all auto-detectors. It can also be used to re-enable (unmute) all detectors. (NOTE: Unmuting won't distinguish those you muted with the script or muted manually.) -Usage: python3 muteAllAutoDetectors.py (to mute all) - python3 muteAllAutoDetectors.py -e (to enable all) + +Usage: +``` +python3 muteAllAutoDetectors.py (to mute all) +python3 muteAllAutoDetectors.py -e (to enable all) +```