Skip to content

Commit 46cedfd

Browse files
updated hx log messages
1 parent aeb2086 commit 46cedfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

input_module_intersight.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ def write_splunk(index, source, sourcetype, data):
461461
RESPONSE = r_intersight(f"{endpoint}?$count=True")
462462
count = RESPONSE.json()['Count']
463463
helper.log_info(
464-
f"{s} | Found {str(count)} Hyperflex records to retrieve")
464+
f"{s} | Found {str(count)} Hyperflex cluster records to retrieve")
465465
results_per_page = 10 # adjust the number of results we pull per API call
466466
for i in range(0, count, results_per_page):
467467
RESPONSE = r_intersight(
@@ -484,7 +484,7 @@ def write_splunk(index, source, sourcetype, data):
484484
RESPONSE = r_intersight(f"{endpoint}?$count=True")
485485
count = RESPONSE.json()['Count']
486486
helper.log_info(
487-
f"{s} | Found {str(count)} Hyperflex records to retrieve")
487+
f"{s} | Found {str(count)} Hyperflex node records to retrieve")
488488
results_per_page = 10 # adjust the number of results we pull per API call
489489
for i in range(0, count, results_per_page):
490490
RESPONSE = r_intersight(

0 commit comments

Comments
 (0)