You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Ansible/snapmirror_report/README.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,19 @@ The output of the report is a CSV file with the following columns:
6
6
- Destination Path (svm:volume)
7
7
- State (e.g. snapmirrored, broken-off)
8
8
- Healthy (true or false)
9
-
- lag\_time (in "P#DT#H#M#S" format, where 'P' and 'T' are fixed characters, and the number before the other letters specify how many Days, Hours, Minutes and Seconds have transpired)
9
+
- lag\_time (in "P#DT#H#M#S" format. See below for an explanation)
10
+
11
+
The lag\_time format always starts with the letter 'P' and if the lag time is more than 24 hours it is followed by
12
+
a number and the letter 'D'. The number is the number of days. The next character is always a 'T' and is followed by
13
+
a number, letter pairs, where the letter is either an 'H', 'M', or 'S'. If the letter is 'H' then number before it is
14
+
the number of hours. If the letter is 'M' then number before it is the number of minutes. If the letter is 'S' then
15
+
number before it is the number of seconds. For example, 'P1DT2H3M4S' represents 1 day, 2 hours, 3 minutes, and 4 seconds.
10
16
11
17
## Requirements
12
-
- Ansible 2.9 or later
13
-
- AWS Ansible collection
14
-
- AWS secret(s) with the credentials neccesary to run SnapMirror ONTAP APIs against the FSx for ONTAP file systems.
18
+
- jq - A lightweight and flexible command-line JSON processor. Installation instructions can be found [here](https://jqlang.github.io/jq/download/)
19
+
- Ansible 2.9 or later. Installation instructions can be found [here](https://docs.ansible.com/ansible/latest/installation_guide/index.html)
20
+
- AWS Ansible collection. This should be included with the base installation of Ansible.
21
+
- AWS secret(s) with the credentials necessary to run SnapMirror ONTAP APIs against the FSx for ONTAP file systems. The required format of the secret is described below.
15
22
16
23
## Installation
17
24
There are three files used to create the report:
@@ -24,6 +31,8 @@ The format of the file should be:
24
31
```
25
32
file_system_id,secret_name
26
33
```
34
+
NOTE: Do not add any spaces before or after the file\_system\_id or secret\_name.
0 commit comments