Query Loki only show today

Hi everyone, I have issue about query from Grafana Loki just show log today, how to configure if I want to query 7 days before ?

I use deployment microservices and S3 Object Storage Internal, running in OCP Development

Here is config file

analytics:
  reporting_enabled: false
auth_enabled: false
bloom_build:
  builder:
    planner_address: loki-bloom-planner-headless.loki.svc.cluster.local:9095
  enabled: false
bloom_gateway:
  client:
    addresses: dnssrvnoa+_grpc._tcp.loki-bloom-gateway-headless.loki.svc.cluster.local
  enabled: false
chunk_store_config:
  chunk_cache_config:
    background:
      writeback_buffer: 500000
      writeback_goroutines: 1
      writeback_size_limit: 500MB
    default_validity: 0s
    memcached:
      batch_size: 4
      parallelism: 5
    memcached_client:
      addresses: dnssrvnoa+_memcached-client._tcp.loki-chunks-cache.loki.svc
      consistent_hash: true
      max_idle_conns: 72
      timeout: 2000ms
common:
  compactor_address: 'http://loki-compactor:3100'
  path_prefix: /var/loki
  replication_factor: 3
  storage:
    s3:
      access_key_id: ${ACCESS_KEY_ID}
      bucketnames: ocp-chunks
      endpoint: ${ENDPOINT}
      http_config:
        insecure_skip_verify: true
      insecure: true
      s3forcepathstyle: true
      secret_access_key: ${SECRET_ACCESS_KEY}
compactor:
  apply_retention_interval: 1h
  compaction_interval: 5m
  delete_request_store: s3
  retention_delete_worker_count: 500
  retention_enabled: true
frontend:
  scheduler_address: loki-query-scheduler.loki.svc.cluster.local:9095
  tail_proxy_url: http://loki-querier.loki.svc.cluster.local:3100
frontend_worker:
  scheduler_address: loki-query-scheduler.loki.svc.cluster.local:9095
index_gateway:
  mode: simple
ingester:
  chunk_encoding: snappy
limits_config:
  allow_structured_metadata: true
  max_cache_freshness_per_query: 10m
  max_entries_limit_per_query: 50000
  max_query_lookback: 168h
  query_timeout: 300s
  reject_old_samples: true
  reject_old_samples_max_age: 168h
  retention_period: 168h
  split_queries_by_interval: 15m
  volume_enabled: true
memberlist:
  join_members:
  - loki-memberlist
pattern_ingester:
  enabled: true
querier:
  max_concurrent: 4
query_range:
  align_queries_with_step: true
  cache_results: true
  results_cache:
    cache:
      background:
        writeback_buffer: 500000
        writeback_goroutines: 1
        writeback_size_limit: 500MB
      default_validity: 12h
      memcached_client:
        addresses: dnssrvnoa+_memcached-client._tcp.loki-results-cache.loki.svc
        consistent_hash: true
        timeout: 500ms
        update_interval: 1m
ruler:
  storage:
    s3:
      access_key_id: ${ACCESS_KEY_ID}
      bucketnames: ocp-ruler
      endpoint: ${ENDPOINT}
      http_config:
        insecure_skip_verify: true
      insecure: true
      s3forcepathstyle: true
      secret_access_key: ${SECRET_ACCESS_KEY}
    type: s3
  wal:
    dir: /var/loki/ruler-wal
runtime_config:
  file: /etc/loki/runtime-config/runtime-config.yaml
schema_config:
  configs:
  - from: "2025-01-01"
    index:
      period: 24h
      prefix: loki_index_
    object_store: s3
    schema: v13
    store: tsdb
server:
  grpc_listen_port: 9095
  http_listen_port: 3100
  http_server_read_timeout: 600s
  http_server_write_timeout: 600s
  log_level: info
storage_config:
  bloom_shipper:
    working_directory: /var/loki/data/bloomshipper
  boltdb_shipper:
    index_gateway_client:
      server_address: dns+loki-index-gateway-headless.loki.svc.cluster.local:9095
  hedging:
    at: 250ms
    max_per_second: 20
    up_to: 3
  tsdb_shipper:
    index_gateway_client:
      server_address: dns+loki-index-gateway-headless.loki.svc.cluster.local:9095
tracing:
  enabled: true

I dont see anything obviously wrong. Your screenshot shows dashboard for past 24 hours, I am not exactly sure what that means.