Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

Commit

Permalink
missing clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
Dieterbe committed Sep 9, 2016
1 parent b965270 commit deaaa9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions metrictank.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ var (
primaryNode = flag.Bool("primary-node", false, "the primary node writes data to cassandra. There should only be 1 primary node per cluster of nodes.")

// Data:
chunkSpanStr = flag.String("chunkspan", "2h", "chunk span")
numChunksInt = flag.Int("numchunks", 5, "number of chunks to keep in memory. should be at least 1 more than what's needed to satisfy aggregation rules")
chunkSpanStr = flag.String("chunkspan", "2h", "duration of raw chunks")
numChunksInt = flag.Int("numchunks", 5, "number of raw chunks to keep in memory. should be at least 1 more than what's needed to satisfy aggregation rules")
ttlStr = flag.String("ttl", "35d", "minimum wait before metrics are removed from storage")

chunkMaxStaleStr = flag.String("chunk-max-stale", "1h", "max age for a chunk before to be considered stale and to be persisted to Cassandra.")
Expand Down
2 changes: 1 addition & 1 deletion scripts/config/metrictank-docker.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ primary-node = true
## data ##

# see https://github.com/raintank/metrictank/blob/master/docs/data-knobs.md for more details
# duration of chunks. e.g. 10min, 30min, 1h, 90min...
# duration of raw chunks. e.g. 10min, 30min, 1h, 90min...
chunkspan = 10min
# number of raw chunks to keep in memory. should be at least 1 more than what's needed to satisfy aggregation rules
numchunks = 5
Expand Down
2 changes: 1 addition & 1 deletion scripts/config/metrictank-package.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ primary-node = true
## data ##

# see https://github.com/raintank/metrictank/blob/master/docs/data-knobs.md for more details
# duration of chunks. e.g. 10min, 30min, 1h, 90min...
# duration of raw chunks. e.g. 10min, 30min, 1h, 90min...
chunkspan = 10min
# number of raw chunks to keep in memory. should be at least 1 more than what's needed to satisfy aggregation rules
numchunks = 5
Expand Down

0 comments on commit deaaa9b

Please sign in to comment.