https://github.com/d-little/integ2json
Converts Intersystem's Cache integrity check files into JSON
https://github.com/d-little/integ2json
intersystems intersystems-cache python37
Last synced: 6 months ago
JSON representation
Converts Intersystem's Cache integrity check files into JSON
- Host: GitHub
- URL: https://github.com/d-little/integ2json
- Owner: d-little
- License: gpl-3.0
- Created: 2018-11-13T20:59:49.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-21T18:50:41.000Z (over 6 years ago)
- Last Synced: 2025-03-29T16:31:48.336Z (10 months ago)
- Topics: intersystems, intersystems-cache, python37
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# integ2json
Converts from this:
```
Cache Database Integrity Check on 01/22/2019 at 19:00:01
System: HOSTNAME Configuration: CACHE
Cache for OS (OS DETAILS) Version
---Directory database_dir---
Global: GLOBAL
Top/Bottom Pnt Level: # of blocks=1 8kb (4% full)
Data Level: # of blocks=18 144kb (72% full)
Total: # of blocks=19 152kb (69% full)
Elapsed Time = 0.0 seconds, Completed 01/22/2019 19:00:01
Global: GLOBAL2
Top/Bottom Pnt Level: # of blocks=1 8kb (0% full)
Data Level: # of blocks=1 8kb (7% full)
Total: # of blocks=2 16kb (3% full)
Elapsed Time = 0.0 seconds, Completed 01/22/2019 19:00:01
```
To this:
```
{
"INTEG_ALL_20190122-190001.txt": {
"databases": {
"database_dir": {
"globals": {
"GLOBAL1": {
"Data": {
"Data_Level": {
"Blocks": 18,
"Percent_Full": 72,
"Size_KB": 144
},
"Top_Bottom_Pnt_Level": {
"Blocks": 1,
"Percent_Full": 4,
"Size_KB": 8
},
"Total": {
"Blocks": 19,
"Percent_Full": 69,
"Size_KB": 152
}
},
"Time": {
"Elapsed_Seconds": 0.0,
"End_Date": "01/22/2019",
"End_Time": "19:00:01"
}
},
"GLOBAL2": {
"Data": {
"Data_Level": {
"Blocks": 1,
"Percent_Full": 7,
"Size_KB": 8
},
"Top_Bottom_Pnt_Level": {
"Blocks": 1,
"Percent_Full": 0,
"Size_KB": 8
},
"Total": {
"Blocks": 2,
"Percent_Full": 3,
"Size_KB": 16
}
},
"Time": {
"Elapsed_Seconds": 0.0,
"End_Date": "01/22/2019",
"End_Time": "19:00:01"
}
}
}
}
}
}
}
```