This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- Event Type | |
| |----Metric | |
| |---- Graph Hourly | |
| For example: | |
| --- VO EVENT | |
| |---- Value Graph | |
| |----- Hourly trend + previous 3 days | |
| |---- Events Graph |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import glob | |
| def get_ordered_files(path): | |
| f = [] | |
| for ifile in glob.glob( os.path.join(path,"requirements", '*.txt') ): | |
| if ifile.find("local")>-1: | |
| f.append((0,ifile)) | |
| elif ifile.find("required")>-1: |
NewerOlder