1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:50 +02:00
dockerfiles/graphite/README.md

97 lines
2.0 KiB
Markdown
Raw Normal View History

2017-03-11 12:05:03 +02:00
graphite
========
[Graphite][1] does three things:
- Kick ass.
- Chew bubblegum.
- Make it easy to store and graph metrics.
2017-03-11 12:31:59 +02:00
## docker-compose.yml
```yaml
graphite:
image: vimagick/graphite
ports:
2017-06-28 12:03:57 +02:00
- "2003:2003"
2018-11-05 12:17:37 +02:00
- "2003:2003/udp"
2017-06-28 12:03:57 +02:00
- "2004:2004"
2018-11-05 12:17:37 +02:00
- "2023:2023"
- "2024:2024"
2017-06-28 12:03:57 +02:00
- "7002:7002"
- "8080:8080"
- "9001:9001"
2017-03-11 12:31:59 +02:00
volumes:
2018-01-24 09:30:34 +02:00
- ./data/conf:/opt/graphite/conf
- ./data/storage:/opt/graphite/storage
2020-03-24 10:26:40 +02:00
- ./data/storage/log/webapp:/opt/graphite/storage/log/webapp
restart: unless-stopped
2017-03-11 12:31:59 +02:00
```
## Up and Running
```bash
$ cd ~/fig/graphite
2020-03-24 10:26:40 +02:00
$ docker-compose run --rm graphite sh
>>> django-admin migrate --noinput --run-syncdb
>>> django-admin createsuperuser
>>> django-admin changepassword
>>> exit
2017-03-11 12:31:59 +02:00
$ docker-compose up -d
2020-03-24 10:26:40 +02:00
2017-03-12 01:20:49 +02:00
$ docker-compose exec graphite sh
2017-05-15 03:54:23 +02:00
>>> vi conf/storage-schemas.conf
2020-03-24 10:26:40 +02:00
>>> supervisorctl restart all
2018-11-05 12:17:37 +02:00
>>> supervisorctl status
carbon-aggregator RUNNING pid 9, uptime 0:00:13
carbon-cache RUNNING pid 8, uptime 0:00:22
graphite-webapp RUNNING pid 7, uptime 0:00:24
2017-03-11 12:31:59 +02:00
>>> exit
2020-03-24 10:26:40 +02:00
2018-01-24 09:30:34 +02:00
$ tree -F -L 4
2017-03-11 12:31:59 +02:00
├── data/
2018-01-24 09:30:34 +02:00
│   ├── conf/
2018-11-05 12:17:37 +02:00
│   │   ├── aggregation-rules.conf
2018-01-24 09:30:34 +02:00
│   │   ├── carbon.conf
2018-11-05 12:17:37 +02:00
│   │   ├── rewrite-rules.conf
2018-01-24 09:30:34 +02:00
│   │   └── storage-schemas.conf
│   └── storage/
│   ├── carbon-cache-a.pid
│   ├── graphite.db
│   ├── log/
│   │   └── webapp/
│   └── whisper/
│   └── carbon/
2017-03-11 12:31:59 +02:00
└── docker-compose.yml
2020-03-24 10:26:40 +02:00
2017-03-11 12:31:59 +02:00
$ curl http://localhost:8080
```
2017-05-15 03:54:23 +02:00
## storage-schemas.conf
```ini
[carbon]
pattern = ^carbon\.
retentions = 60:90d
2018-01-24 09:30:34 +02:00
[test_1day_for_1year]
2017-05-15 03:54:23 +02:00
pattern = ^test\.
retentions = 1d:1y
[default_1min_for_1day]
pattern = .*
retentions = 60s:1d
```
## Resize Whisper
```bash
$ docker-compose exec graphite sh
>>> cd storage/whisper/test
>>> find . -type f -name '*.wsp' -exec whisper-resize.py --nobackup {} 1d:1y \;
```
2017-03-11 12:05:03 +02:00
[1]: http://graphiteapp.org/