Missing logs in NS8

I think this is the relevant error message:

Feb 20 09:31:50 daho-ns8 loki-server[13571]:   line 68: field auth_enabled already set in type loki.ConfigWrapper
Feb 20 09:31:50 daho-ns8 loki-server[13571]: failed parsing config: /etc/loki/local-config.yaml: yaml: unmarshal errors:

Please check the file /etc/loki/local-config.yaml:

runagent -m loki1 cat ../loki-config.yaml

Maybe use a yaml checker: https://www.yamllint.com/

My local-config.yaml to compare

This text will be hidden

auth_enabled: false

analytics:
  reporting_enabled: false
  usage_stats_url: ""

server:
  http_listen_port: 3100

ingester:
  lifecycler:
    address: 127.0.0.1
    ring:
      kvstore:
        store: inmemory
      replication_factor: 1
    final_sleep: 0s
  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
  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_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
  wal:
    dir: "/tmp/wal"

schema_config:
  configs:
    - from: 2020-10-24
      store: boltdb-shipper
      object_store: filesystem
      schema: v11
      index:
        prefix: index_
        period: 24h

storage_config:
  boltdb_shipper:
    active_index_directory: /loki/boltdb-shipper-active
    cache_location: /loki/boltdb-shipper-cache
    cache_ttl: 24h         # Can be increased for faster performance over longer query periods, uses more disk space
    shared_store: filesystem
  filesystem:
    directory: /loki/chunks

compactor:
  working_directory: /loki/boltdb-shipper-compactor
  shared_store: filesystem
  retention_enabled: true
  retention_delete_delay: 30m
  delete_request_store: filesystem

limits_config:
  reject_old_samples: true
  reject_old_samples_max_age: 168h
  retention_period: ${LOKI_RETENTION_PERIOD:-365}d

chunk_store_config:
  max_look_back_period: 0s

ruler:
  storage:
    type: local
    local:
      directory: /loki/rules
  rule_path: /loki/rules-temp
  alertmanager_url: http://localhost:9093
  ring:
    kvstore:
      store: inmemory
  enable_api: true

There’s also the “reinstall loki” option:

2 Likes