├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── analyzer.go ├── bootstrap ├── css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.min.css │ └── custom.css ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ └── bootstrap.min.js ├── config.go ├── db.go ├── helpers-md5.go ├── helpers.go ├── hlsproberc-mintest ├── html ├── ccchart-min.js ├── index.html └── menu.html ├── http-api.go ├── http-client.go ├── logger.go ├── monitor-prober.go ├── monitor.go ├── pics ├── favicon.ico └── logo-64.png ├── reports.go ├── sample-config ├── source-loader.go ├── stats.go ├── streamsurfer.go ├── streamsurfer_test.go ├── structure.go ├── templates.go ├── templates ├── activity-index.tmpl ├── index.tmpl ├── page-footer.tmpl ├── page-header.tmpl ├── report-index.tmpl ├── report-stream-history.tmpl ├── report-stream-info.tmpl └── top-page-menu.tmpl ├── webui-report.go └── zabbix.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/README.md -------------------------------------------------------------------------------- /analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/analyzer.go -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /bootstrap/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/bootstrap/css/custom.css -------------------------------------------------------------------------------- /bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/config.go -------------------------------------------------------------------------------- /db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/db.go -------------------------------------------------------------------------------- /helpers-md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/helpers-md5.go -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/helpers.go -------------------------------------------------------------------------------- /hlsproberc-mintest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/hlsproberc-mintest -------------------------------------------------------------------------------- /html/ccchart-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/html/ccchart-min.js -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/html/index.html -------------------------------------------------------------------------------- /html/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/html/menu.html -------------------------------------------------------------------------------- /http-api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/http-api.go -------------------------------------------------------------------------------- /http-client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/http-client.go -------------------------------------------------------------------------------- /logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/logger.go -------------------------------------------------------------------------------- /monitor-prober.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/monitor-prober.go -------------------------------------------------------------------------------- /monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/monitor.go -------------------------------------------------------------------------------- /pics/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/pics/favicon.ico -------------------------------------------------------------------------------- /pics/logo-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/pics/logo-64.png -------------------------------------------------------------------------------- /reports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/reports.go -------------------------------------------------------------------------------- /sample-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/sample-config -------------------------------------------------------------------------------- /source-loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/source-loader.go -------------------------------------------------------------------------------- /stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/stats.go -------------------------------------------------------------------------------- /streamsurfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/streamsurfer.go -------------------------------------------------------------------------------- /streamsurfer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/streamsurfer_test.go -------------------------------------------------------------------------------- /structure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/structure.go -------------------------------------------------------------------------------- /templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/templates.go -------------------------------------------------------------------------------- /templates/activity-index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/templates/activity-index.tmpl -------------------------------------------------------------------------------- /templates/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/templates/index.tmpl -------------------------------------------------------------------------------- /templates/page-footer.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/templates/page-footer.tmpl -------------------------------------------------------------------------------- /templates/page-header.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/templates/page-header.tmpl -------------------------------------------------------------------------------- /templates/report-index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/templates/report-index.tmpl -------------------------------------------------------------------------------- /templates/report-stream-history.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/templates/report-stream-history.tmpl -------------------------------------------------------------------------------- /templates/report-stream-info.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/templates/report-stream-info.tmpl -------------------------------------------------------------------------------- /templates/top-page-menu.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/templates/top-page-menu.tmpl -------------------------------------------------------------------------------- /webui-report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/webui-report.go -------------------------------------------------------------------------------- /zabbix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafov/streamsurfer/HEAD/zabbix.go --------------------------------------------------------------------------------