forked from ChelseaKR/sprout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmimir-config.yaml
More file actions
48 lines (40 loc) · 1.27 KB
/
Copy pathmimir-config.yaml
File metadata and controls
48 lines (40 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Minimal single-process Mimir config for local dev (filesystem storage, no object store,
# no multi-tenant auth — not a production Mimir deployment).
multitenancy_enabled: false
server:
http_listen_port: 9009
ingester:
ring:
# Mimir's default replication factor is 3, which fails all writes ("at least 2 live
# replicas required") against the single ingester this single-process/single-container
# dev setup runs — replication only makes sense across multiple ingesters.
replication_factor: 1
common:
storage:
backend: filesystem
filesystem:
dir: /tmp/mimir/data
blocks_storage:
backend: filesystem
filesystem:
dir: /tmp/mimir/blocks
bucket_store:
sync_dir: /tmp/mimir/tsdb-sync
tsdb:
dir: /tmp/mimir/tsdb
compactor:
data_dir: /tmp/mimir/compactor
ruler_storage:
backend: filesystem
filesystem:
dir: /tmp/mimir/ruler
alertmanager_storage:
backend: filesystem
filesystem:
dir: /tmp/mimir/alertmanager
limits:
# This is a single-user local box, not a shared multi-tenant cluster — the whole point
# of raising these is that a laptop-scale dev loop should never hit Mimir's
# production-cluster ingestion caps while poking at a handful of RED metrics.
ingestion_rate: 100000
ingestion_burst_size: 200000