├── .gitignore ├── README.md ├── XtremIOSnap.exe ├── XtremIOSnap.py ├── images ├── XMS_Folder.png ├── XMS_Snapshot_Hierarchy.png ├── XMS_hourly_snaps.png ├── encode.png ├── folder_snap.png ├── folder_snap_with_delete.png ├── vol_snap.png └── volsnap_with_delete.png └── modules ├── __init__.py ├── colorer.py ├── encoder.py ├── logger.py ├── options.py └── rest.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/README.md -------------------------------------------------------------------------------- /XtremIOSnap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/XtremIOSnap.exe -------------------------------------------------------------------------------- /XtremIOSnap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/XtremIOSnap.py -------------------------------------------------------------------------------- /images/XMS_Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/images/XMS_Folder.png -------------------------------------------------------------------------------- /images/XMS_Snapshot_Hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/images/XMS_Snapshot_Hierarchy.png -------------------------------------------------------------------------------- /images/XMS_hourly_snaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/images/XMS_hourly_snaps.png -------------------------------------------------------------------------------- /images/encode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/images/encode.png -------------------------------------------------------------------------------- /images/folder_snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/images/folder_snap.png -------------------------------------------------------------------------------- /images/folder_snap_with_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/images/folder_snap_with_delete.png -------------------------------------------------------------------------------- /images/vol_snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/images/vol_snap.png -------------------------------------------------------------------------------- /images/volsnap_with_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/images/volsnap_with_delete.png -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'ebattle' 2 | -------------------------------------------------------------------------------- /modules/colorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/modules/colorer.py -------------------------------------------------------------------------------- /modules/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/modules/encoder.py -------------------------------------------------------------------------------- /modules/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/modules/logger.py -------------------------------------------------------------------------------- /modules/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/modules/options.py -------------------------------------------------------------------------------- /modules/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanbattle/XtremIOSnap/HEAD/modules/rest.py --------------------------------------------------------------------------------