Try 07
This commit is contained in:
parent
09b8667d00
commit
7821239ab3
|
@ -1,4 +1,4 @@
|
||||||
%{ if AuthEnabled ~}
|
%{ if .Vars.AuthEnabled ~}
|
||||||
auth_enabled: true
|
auth_enabled: true
|
||||||
%{ else }
|
%{ else }
|
||||||
auth_enabled: false
|
auth_enabled: false
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
%{ if AuthEnabled ~}
|
%{ if Vars.Loki.AuthEnabled ~}
|
||||||
auth_enabled: true
|
auth_enabled: true
|
||||||
%{ else }
|
%{ else }
|
||||||
auth_enabled: false
|
auth_enabled: false
|
||||||
%{ endif }
|
%{ endif }
|
||||||
|
|
||||||
server:
|
server:
|
||||||
http_listen_port: ${HTTPPort}
|
http_listen_port: ${Vars.Loki.HTTPPort}
|
||||||
grpc_listen_port: ${GRPCPort}
|
grpc_listen_port: ${Vars.Loki.GRPCPort}
|
||||||
log_level: ${LogLevel}
|
log_level: ${Vars.Loki.LogLevel}
|
||||||
|
|
||||||
ingester:
|
ingester:
|
||||||
wal:
|
wal:
|
||||||
enabled: true
|
enabled: true
|
||||||
dir: ${StorageRoot}/wal
|
dir: ${Vars.Loki.StorageRoot}/wal
|
||||||
flush_on_shutdown: true
|
flush_on_shutdown: true
|
||||||
lifecycler:
|
lifecycler:
|
||||||
address: 127.0.0.1
|
address: 127.0.0.1
|
||||||
|
@ -23,7 +23,7 @@ ingester:
|
||||||
final_sleep: 0s
|
final_sleep: 0s
|
||||||
chunk_idle_period: 1h # Any chunk not receiving new logs in this time will be flushed
|
chunk_idle_period: 1h # Any chunk not receiving new logs in this time will be flushed
|
||||||
max_chunk_age: 1h # All chunks will be flushed when they hit this age, default is 1h
|
max_chunk_age: 1h # All chunks will be flushed when they hit this age, default is 1h
|
||||||
chunk_target_size: 1048576 # Loki will attempt to build chunks up to 1.5MB, flushing first if chunk_idle_period or max_chunk_age is reached first
|
chunk_target_size: 1048576 # Vars.Loki will attempt to build chunks up to 1.5MB, flushing first if chunk_idle_period or max_chunk_age is reached first
|
||||||
chunk_retain_period: 30s # Must be greater than index read cache TTL if using an index cache (Default index read cache TTL is 5m)
|
chunk_retain_period: 30s # Must be greater than index read cache TTL if using an index cache (Default index read cache TTL is 5m)
|
||||||
max_transfer_retries: 0 # Chunk transfers disabled
|
max_transfer_retries: 0 # Chunk transfers disabled
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ schema_config:
|
||||||
configs:
|
configs:
|
||||||
- from: 2020-05-15
|
- from: 2020-05-15
|
||||||
store: boltdb-shipper
|
store: boltdb-shipper
|
||||||
object_store: ${ObjectStore}
|
object_store: ${Vars.Loki.ObjectStore}
|
||||||
schema: v11
|
schema: v11
|
||||||
index:
|
index:
|
||||||
prefix: index_
|
prefix: index_
|
||||||
|
@ -39,23 +39,23 @@ schema_config:
|
||||||
|
|
||||||
storage_config:
|
storage_config:
|
||||||
boltdb_shipper:
|
boltdb_shipper:
|
||||||
active_index_directory: ${StorageRoot}/index
|
active_index_directory: ${Vars.Loki.StorageRoot}/index
|
||||||
shared_store: ${SharedStore}
|
shared_store: ${Vars.Loki.SharedStore}
|
||||||
cache_location: ${StorageRoot}/cache
|
cache_location: ${Vars.Loki.StorageRoot}/cache
|
||||||
cache_ttl: 168h
|
cache_ttl: 168h
|
||||||
|
|
||||||
%{ if ObjectStore == "filesystem" ~}
|
%{ if Vars.Loki.ObjectStore == "filesystem" ~}
|
||||||
filesystem:
|
filesystem:
|
||||||
directory: ${StorageRoot}/chunks
|
directory: ${Vars.Loki.StorageRoot}/chunks
|
||||||
%{ else }
|
%{ else }
|
||||||
aws:
|
aws:
|
||||||
s3: s3://${S3.APIKey}:${S3.APISecretKey}@${S3.URL}/${S3.BucketName}
|
s3: s3://${Vars.Loki.S3.APIKey}:${Vars.Loki.S3.APISecretKey}@${Vars.Loki.S3.URL}/${Vars.Loki.S3.BucketName}
|
||||||
s3forcepathstyle: true
|
s3forcepathstyle: true
|
||||||
%{ endif }
|
%{ endif }
|
||||||
|
|
||||||
compactor:
|
compactor:
|
||||||
shared_store: ${SharedStore}
|
shared_store: ${Vars.Loki.SharedStore}
|
||||||
working_directory: ${StorageRoot}/compactor
|
working_directory: ${Vars.Loki.StorageRoot}/compactor
|
||||||
compaction_interval: 10m
|
compaction_interval: 10m
|
||||||
|
|
||||||
limits_config:
|
limits_config:
|
||||||
|
@ -73,9 +73,9 @@ ruler:
|
||||||
storage:
|
storage:
|
||||||
type: local
|
type: local
|
||||||
local:
|
local:
|
||||||
directory: ${StorageRoot}/rules
|
directory: ${Vars.Loki.StorageRoot}/rules
|
||||||
rule_path: ${StorageRoot}/rules
|
rule_path: ${Vars.Loki.StorageRoot}/rules
|
||||||
alertmanager_url: ${AlertManagerURL}
|
alertmanager_url: ${Vars.Loki.AlertManagerURL}
|
||||||
ring:
|
ring:
|
||||||
kvstore:
|
kvstore:
|
||||||
store: inmemory
|
store: inmemory
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
{{ if .AuthEnabled }}
|
{{ if .Vars.AuthEnabled }}
|
||||||
auth_enabled: true
|
auth_enabled: true
|
||||||
{{ else }}
|
{{ else }}
|
||||||
auth_enabled: false
|
auth_enabled: false
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
server:
|
server:
|
||||||
http_listen_port: {{ .HTTPPort }}
|
http_listen_port: {{ .Vars.HTTPPort }}
|
||||||
grpc_listen_port: {{ .GRPCPort }}
|
grpc_listen_port: {{ .Vars.GRPCPort }}
|
||||||
log_level: {{ .LogLevel }}
|
log_level: {{ .LogLevel }}
|
||||||
|
|
||||||
ingester:
|
ingester:
|
||||||
wal:
|
wal:
|
||||||
enabled: true
|
enabled: true
|
||||||
dir: {{ .StorageRoot }}/wal
|
dir: {{ .Vars.StorageRoot }}/wal
|
||||||
flush_on_shutdown: true
|
flush_on_shutdown: true
|
||||||
lifecycler:
|
lifecycler:
|
||||||
address: 127.0.0.1
|
address: 127.0.0.1
|
||||||
|
@ -31,7 +31,7 @@ schema_config:
|
||||||
configs:
|
configs:
|
||||||
- from: 2020-05-15
|
- from: 2020-05-15
|
||||||
store: boltdb-shipper
|
store: boltdb-shipper
|
||||||
object_store: {{ .ObjectStore }}
|
object_store: {{ .Vars.ObjectStore }}
|
||||||
schema: v11
|
schema: v11
|
||||||
index:
|
index:
|
||||||
prefix: index_
|
prefix: index_
|
||||||
|
@ -39,23 +39,23 @@ schema_config:
|
||||||
|
|
||||||
storage_config:
|
storage_config:
|
||||||
boltdb_shipper:
|
boltdb_shipper:
|
||||||
active_index_directory: {{ .StorageRoot }}/index
|
active_index_directory: {{ .Vars.StorageRoot }}/index
|
||||||
shared_store: {{ .SharedStore }}
|
shared_store: {{ .Vars.SharedStore }}
|
||||||
cache_location: {{ .StorageRoot }}/cache
|
cache_location: {{ .Vars.StorageRoot }}/cache
|
||||||
cache_ttl: 168h
|
cache_ttl: 168h
|
||||||
|
|
||||||
{{ if eq (.ObjectStore) ("filesystem") }}
|
{{ if eq (.ObjectStore) ("filesystem") }}
|
||||||
filesystem:
|
filesystem:
|
||||||
directory: {{ .StorageRoot }}/chunks
|
directory: {{ .Vars.StorageRoot }}/chunks
|
||||||
{{ else }}
|
{{ else }}
|
||||||
aws:
|
aws:
|
||||||
s3: s3://{{ .S3.APIKey }}:{{ .S3.APISecretKey}}@{{ .S3.URL}}/{{ .S3.BucketName}}
|
s3: s3://{{ .Vars.S3.APIKey }}:{{ .Vars.S3.APISecretKey}}@{{ .S3.URL}}/{{ .S3.BucketName}}
|
||||||
s3forcepathstyle: true
|
s3forcepathstyle: true
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
compactor:
|
compactor:
|
||||||
shared_store: {{ .SharedStore }}
|
shared_store: {{ .Vars.SharedStore }}
|
||||||
working_directory: {{ .StorageRoot }}/compactor
|
working_directory: {{ .Vars.StorageRoot }}/compactor
|
||||||
compaction_interval: 10m
|
compaction_interval: 10m
|
||||||
|
|
||||||
limits_config:
|
limits_config:
|
||||||
|
@ -73,9 +73,9 @@ ruler:
|
||||||
storage:
|
storage:
|
||||||
type: local
|
type: local
|
||||||
local:
|
local:
|
||||||
directory: {{ .StorageRoot }}/rules
|
directory: {{ .Vars.StorageRoot }}/rules
|
||||||
rule_path: {{ .StorageRoot }}/rules
|
rule_path: {{ .Vars.StorageRoot }}/rules
|
||||||
alertmanager_url: {{ .AlertManagerURL }}
|
alertmanager_url: {{ .Vars.AlertManagerURL }}
|
||||||
ring:
|
ring:
|
||||||
kvstore:
|
kvstore:
|
||||||
store: inmemory
|
store: inmemory
|
||||||
|
|
Loading…
Reference in New Issue