Skip to content

Commit 16093da

Browse files
authored
Update Pure-FA_prtg.py
1 parent 7ef6632 commit 16093da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Pure-FA_prtg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
## Overview
55
#
6-
# This short Python example illustrates how to build a simple PRTG custom sendor to monitor
6+
# This short Python example illustrates how to build a simple PRTG custom sensor to monitor
77
# Pure Storage FlashArrays. The Pure Storage Python REST Client is used to query the FlashArray
88
# to get the basic performance counters.
99
#
@@ -35,7 +35,7 @@
3535
params = json.loads(data['params'])
3636
result = CustomSensorResult("Pure Storage performance info")
3737
urllib3.disable_warnings()
38-
# gat basic statistics from the FlashArray specified in the json object
38+
# get basic statistics from the FlashArray specified in the json object
3939
fa = purestorage.FlashArray(params['addr'], api_token=params['api_token'])
4040
fainfo = fa.get(action='monitor')
4141
fa.invalidate_cookie()

0 commit comments

Comments
 (0)