├── .DS_Store ├── .idea ├── MySQL_Diagnose.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── AWR_report └── MySQL_AWR_192.168.20.88_20171113_222403.html ├── README.md ├── __pycache__ └── monitor.cpython-35.pyc ├── conf ├── account_info.json └── diagnose.cnf ├── imgs ├── favicon.ico └── flow_chart.png ├── lib ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ └── funcs.cpython-35.pyc └── funcs.py ├── logs └── mysql_diagnose.log ├── machine ├── __pycache__ │ └── machine_html_result.cpython-35.pyc └── machine_html_result.py ├── monitor.py ├── mysql ├── __pycache__ │ ├── mysql_html_result.cpython-35.pyc │ └── sys_variables_status.cpython-35.pyc ├── mysql_html_result.py └── sys_variables_status.py ├── mysql_diagnose.py ├── requestment.txt └── t.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkdb/MySQL_Diagnose/e37cc20928102c859f0b75dd153726dfae4042fe/.DS_Store -------------------------------------------------------------------------------- /.idea/MySQL_Diagnose.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 20 | 21 | 22 | 23 | 24 | 25 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 61 | 62 | 63 | 64 | ' 65 | 66 | 67 | " 68 | 69 | 70 | 71 | 73 | 74 | 94 | 95 | 96 | 97 | 98 | true 99 | DEFINITION_ORDER 100 | 101 | 102 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 |