├── .gitignore ├── LICENSE ├── README.md ├── broker.go ├── dashing.go ├── example ├── dashboards │ ├── layout.gerb │ └── sample.gerb ├── jobs │ ├── buzzwords.go │ ├── convergence.go │ └── sample.go ├── main.go └── widgets │ ├── graph │ └── graph.html │ ├── list │ └── list.html │ ├── meter │ └── meter.html │ ├── number │ └── number.html │ └── text │ └── text.html ├── server.go └── worker.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/README.md -------------------------------------------------------------------------------- /broker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/broker.go -------------------------------------------------------------------------------- /dashing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/dashing.go -------------------------------------------------------------------------------- /example/dashboards/layout.gerb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/dashboards/layout.gerb -------------------------------------------------------------------------------- /example/dashboards/sample.gerb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/dashboards/sample.gerb -------------------------------------------------------------------------------- /example/jobs/buzzwords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/jobs/buzzwords.go -------------------------------------------------------------------------------- /example/jobs/convergence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/jobs/convergence.go -------------------------------------------------------------------------------- /example/jobs/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/jobs/sample.go -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/main.go -------------------------------------------------------------------------------- /example/widgets/graph/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/widgets/graph/graph.html -------------------------------------------------------------------------------- /example/widgets/list/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/widgets/list/list.html -------------------------------------------------------------------------------- /example/widgets/meter/meter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/widgets/meter/meter.html -------------------------------------------------------------------------------- /example/widgets/number/number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/widgets/number/number.html -------------------------------------------------------------------------------- /example/widgets/text/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/example/widgets/text/text.html -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/server.go -------------------------------------------------------------------------------- /worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigablah/dashing-go/HEAD/worker.go --------------------------------------------------------------------------------