https://github.com/apertureless/bs3stat
π Small dashboard service for backup πΎ
https://github.com/apertureless/bs3stat
backup dashboard dashboard-service
Last synced: 16 days ago
JSON representation
π Small dashboard service for backup πΎ
- Host: GitHub
- URL: https://github.com/apertureless/bs3stat
- Owner: apertureless
- License: mit
- Created: 2016-10-08T18:23:04.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-03-03T08:22:11.000Z (over 6 years ago)
- Last Synced: 2025-01-08T09:51:27.339Z (over 1 year ago)
- Topics: backup, dashboard, dashboard-service
- Language: Vue
- Size: 7.55 MB
- Stars: 7
- Watchers: 4
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://circleci.com/gh/apertureless/bs3stat)
[](https://github.com/apertureless/bs3stat/blob/master/LICENSE.txt)
[](https://goreportcard.com/report/github.com/apertureless/bs3stat)
[](https://microbadger.com/images/apertureless/bs3stat:41fc616931ba8c6ac48e909588232ec3fd8cf70d "Get your own image badge on microbadger.com")
# bs3stat
Is a small dashboard service in go and vue, to collect and visualize your backups made with [backup](https://github.com/backup/backup)
**π§ It is still in early alpha and not production readyβ **
## Features
- Cluster statistics by model name
- Bar height based on backup duration
- Bar color based on backup status
- TODO: S3 integration with buckets and bucket cost
- TODO: Auth for api endpoints
- TODO: Simple login for dashboard
- TODO: Crud operations in frontend
- TODO: Tooltips with more info
- TODO: Docker container
## Commands
**Run server:**
```
go run main.go
```
**Run server with custom port:**
```
go run main.go --port=3000
```
**Run with migrations:**
```
go run main.go --migrate
```
**Run with db seeds:**
```
go run main.go --seed
```
## Migration
**Create migration**
```
migrate --url sqlite3://storage.db --path ./db/migrations create add_example_field
```
**Migrate**
```
migrate --url sqlite3://storage.db --path ./db/migrations up # or down
```
## Backup Notifier Settings
Accepted post parameters are
```json
{
"name":"model_name",
"title": "Model Name",
"status": "Backup::Success",
"duration": "00:00:24"
}
```