Loki not showing all pods logs

Hello I deployed Promtail using Grafana/promtail Helm on EKS and I have another EC2 instance which I installed loki as Docker container
The problem is I have more than 20 pod and I only see 8 pods on Grafana.
I installed Promtail with the official values.yaml (only change is loki ip address)
And this is my loki-config.yaml file:
auth_enabled: false
server:
http_listen_port: 3100

ingester:
wal:
enabled: true
dir: /data/loki/wal

common:
ring:
instance_addr: loki
kvstore:
store: inmemory
replication_factor: 1
path_prefix: /data/loki

schema_config:
configs:
- from: 2025-03-07
store: tsdb
object_store: filesystem
schema: v13
index:
prefix: index_
period: 24h

storage_config:
tsdb_shipper:
active_index_directory: /data/loki/index
cache_location: /data/loki/tsdb-cache
filesystem:
directory: /data/loki/chunks

limits_config:
retention_period: 1d
allow_structured_metadata: true
ingestion_rate_mb: 100
ingestion_burst_size_mb: 150
max_entries_limit_per_query: 50000
compactor:
working_directory: /data/loki/compactor
retention_enabled: true
delete_request_store: filesystem
query_range:
results_cache:
cache:
embedded_cache:
enabled: true
frontend:
log_queries_longer_than: 5s
max_outstanding_per_tenant: 1000

table_manager:
retention_deletes_enabled: true
retention_period: 1d
analytics:
reporting_enabled: false

So could you please help me on this?