├── .gitignore ├── server ├── dev_public │ ├── lib │ │ ├── js │ │ │ ├── 0_licenses.js │ │ │ ├── 5_ripples.min.js │ │ │ ├── 4_material.min.js │ │ │ ├── 6_morris.min.js │ │ │ └── 3_bootstrap.min.js │ │ ├── fonts │ │ │ ├── Material-Design-Icons.eot │ │ │ ├── Material-Design-Icons.ttf │ │ │ └── Material-Design-Icons.woff │ │ └── css │ │ │ ├── 4_morris.css │ │ │ └── 3_ripples.min.css │ ├── js │ │ ├── PageInitialization.js │ │ ├── LogDetailRoute.js │ │ ├── LogObjectModel.js │ │ ├── StatsRoute.js │ │ ├── Router.js │ │ ├── DataLoader.js │ │ └── LogsRoute.js │ └── less │ │ └── core.less ├── routes │ ├── capture_post.js │ └── rest.js ├── server.js └── views │ └── index.html ├── config.inc.json ├── test ├── config.test.json ├── server.spec.js ├── rest.spec.js └── test_log_storage ├── .travis.yml ├── demo.html ├── LICENSE.txt ├── package.json ├── dist ├── capture.min.js └── capture.js ├── js └── capture.js ├── README.md └── Gruntfile.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | server/store/ 3 | server/public/ 4 | test/log_storage 5 | -------------------------------------------------------------------------------- /server/dev_public/lib/js/0_licenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarshallOfSound/OpenLog/HEAD/server/dev_public/lib/js/0_licenses.js -------------------------------------------------------------------------------- /server/dev_public/js/PageInitialization.js: -------------------------------------------------------------------------------- 1 | window.onload = function() { 2 | $.material.init(); 3 | window.Router = new Router(); 4 | }; -------------------------------------------------------------------------------- /config.inc.json: -------------------------------------------------------------------------------- 1 | { 2 | "auth": [{ 3 | "user": "openlog", 4 | "password": "password" 5 | }], 6 | "server": { 7 | "port": 4783 8 | } 9 | } -------------------------------------------------------------------------------- /test/config.test.json: -------------------------------------------------------------------------------- 1 | { 2 | "auth": [{ 3 | "user": "openlog", 4 | "password": "password" 5 | }], 6 | "server": { 7 | "port": 4782 8 | } 9 | } -------------------------------------------------------------------------------- /server/dev_public/lib/fonts/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarshallOfSound/OpenLog/HEAD/server/dev_public/lib/fonts/Material-Design-Icons.eot -------------------------------------------------------------------------------- /server/dev_public/lib/fonts/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarshallOfSound/OpenLog/HEAD/server/dev_public/lib/fonts/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /server/dev_public/lib/fonts/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarshallOfSound/OpenLog/HEAD/server/dev_public/lib/fonts/Material-Design-Icons.woff -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - "0.12" 5 | - "0.11" 6 | - "0.10" 7 | - iojs 8 | before_install: 9 | - "npm install -g grunt-cli" 10 | -------------------------------------------------------------------------------- /server/dev_public/lib/css/4_morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} 3 | -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Below you can see some pretty statistics for your instance of OpenLog, if you click that Logs button you can start looking at all those errors.
32 | 33 || Page | 88 |Error Frequency | 89 |
|---|
| ID | 150 |Type | 151 |Message | 152 |Count | 153 |Reported | 154 |
|---|