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

Commit c003cb7

Browse files
authored
Merge pull request #1083 from grafana/fix-docker-log-levels
fix docker log levels
2 parents 6f2b598 + dd1a166 commit c003cb7

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

docker/docker-chaos/docker-compose.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
MT_INSTANCE: metrictank0
2323
MT_KAFKA_CLUSTER_PARTITIONS: 0,1,2,3
2424
MT_KAFKA_MDM_IN_PARTITIONS: 0,1,2,3
25-
MT_LOG_LEVEL: 2
25+
MT_LOG_LEVEL: info
2626
links:
2727
- cassandra
2828

@@ -46,7 +46,7 @@ services:
4646
MT_INSTANCE: metrictank1
4747
MT_KAFKA_CLUSTER_PARTITIONS: 0,1,2,3
4848
MT_KAFKA_MDM_IN_PARTITIONS: 0,1,2,3
49-
MT_LOG_LEVEL: 2
49+
MT_LOG_LEVEL: info
5050
links:
5151
- cassandra
5252
- metrictank0
@@ -71,7 +71,7 @@ services:
7171
MT_INSTANCE: metrictank2
7272
MT_KAFKA_CLUSTER_PARTITIONS: 4,5,6,7
7373
MT_KAFKA_MDM_IN_PARTITIONS: 4,5,6,7
74-
MT_LOG_LEVEL: 2
74+
MT_LOG_LEVEL: info
7575
links:
7676
- cassandra
7777
- metrictank0
@@ -96,7 +96,7 @@ services:
9696
MT_INSTANCE: metrictank3
9797
MT_KAFKA_CLUSTER_PARTITIONS: 4,5,6,7
9898
MT_KAFKA_MDM_IN_PARTITIONS: 4,5,6,7
99-
MT_LOG_LEVEL: 2
99+
MT_LOG_LEVEL: info
100100
links:
101101
- cassandra
102102
- metrictank0
@@ -121,7 +121,7 @@ services:
121121
MT_INSTANCE: metrictank4
122122
MT_KAFKA_CLUSTER_PARTITIONS: 8,9,10,11
123123
MT_KAFKA_MDM_IN_PARTITIONS: 8,9,10,11
124-
MT_LOG_LEVEL: 2
124+
MT_LOG_LEVEL: info
125125
links:
126126
- cassandra
127127
- metrictank0
@@ -146,7 +146,7 @@ services:
146146
MT_INSTANCE: metrictank5
147147
MT_KAFKA_CLUSTER_PARTITIONS: 8,9,10,11
148148
MT_KAFKA_MDM_IN_PARTITIONS: 8,9,10,11
149-
MT_LOG_LEVEL: 2
149+
MT_LOG_LEVEL: info
150150
links:
151151
- cassandra
152152
- metrictank0

docker/docker-cluster/docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
MT_INSTANCE: metrictank0
2323
MT_KAFKA_CLUSTER_PARTITIONS: 0,1,2,3
2424
MT_KAFKA_MDM_IN_PARTITIONS: 0,1,2,3
25-
MT_LOG_LEVEL: 2
25+
MT_LOG_LEVEL: info
2626
links:
2727
- cassandra
2828

@@ -46,7 +46,7 @@ services:
4646
MT_INSTANCE: metrictank1
4747
MT_KAFKA_CLUSTER_PARTITIONS: 0,1,2,3
4848
MT_KAFKA_MDM_IN_PARTITIONS: 0,1,2,3
49-
MT_LOG_LEVEL: 2
49+
MT_LOG_LEVEL: info
5050
links:
5151
- cassandra
5252
- metrictank0
@@ -71,7 +71,7 @@ services:
7171
MT_INSTANCE: metrictank2
7272
MT_KAFKA_CLUSTER_PARTITIONS: 4,5,6,7
7373
MT_KAFKA_MDM_IN_PARTITIONS: 4,5,6,7
74-
MT_LOG_LEVEL: 2
74+
MT_LOG_LEVEL: info
7575
links:
7676
- cassandra
7777
- metrictank0
@@ -96,7 +96,7 @@ services:
9696
MT_INSTANCE: metrictank3
9797
MT_KAFKA_CLUSTER_PARTITIONS: 4,5,6,7
9898
MT_KAFKA_MDM_IN_PARTITIONS: 4,5,6,7
99-
MT_LOG_LEVEL: 2
99+
MT_LOG_LEVEL: info
100100
links:
101101
- cassandra
102102
- metrictank0

docs/config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Settings within section names in the config just require you to prefix the secti
1313
Examples:
1414

1515
```
16-
MT_LOG_LEVEL: 1 # MT_<setting_name>
16+
MT_LOG_LEVEL: info # MT_<setting_name>
1717
MT_CASSANDRA_WRITE_CONCURRENCY: 10 # MT_<setting_name>
1818
MT_KAFKA_MDM_IN_DATA_DIR: /your/data/dir # MT_<section_title>_<setting_name>
1919
```

scripts/dev/config-to-doc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Settings within section names in the config just require you to prefix the secti
6969
Examples:
7070

7171
\`\`\`
72-
MT_LOG_LEVEL: 1 # MT_<setting_name>
72+
MT_LOG_LEVEL: info # MT_<setting_name>
7373
MT_CASSANDRA_WRITE_CONCURRENCY: 10 # MT_<setting_name>
7474
MT_KAFKA_MDM_IN_DATA_DIR: /your/data/dir # MT_<section_title>_<setting_name>
7575
\`\`\`

0 commit comments

Comments
 (0)