Loki 在 Explorer 和 Grafana 仪表板上加载项目的时间过长

问题描述 投票:0回答:1

我在使用 Loki 作为 Grafana 中的数据源时遇到了问题。当我在grafana中检查资源管理器页面时,通常需要很长时间才能加载文件名、作业、标签和其他元素。有时,甚至无法完全加载。 在图像中,您可以看到微调器在“选择标签”部分中不断旋转。它会持续移动很长一段时间。 enter image description here

这是我的 loki 配置文件:

auth_enabled: false

server:
  http_listen_port: 3100
  grpc_listen_port: 9096
  http_server_read_timeout: 300s
  http_server_write_timeout: 300s
  http_server_idle_timeout: 300s

common:
  path_prefix: /tmp/loki
  storage:
    filesystem:
      chunks_directory: /tmp/loki/chunks
      rules_directory: /tmp/loki/rules
  replication_factor: 1
  ring:
    kvstore:
      store: inmemory

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

ruler:
  alertmanager_url: http://localhost:9093

query_scheduler:
  max_outstanding_requests_per_tenant: 4096

frontend:
  max_outstanding_per_tenant: 4096

query_range:
  parallelise_shardable_queries: true

ingester:
  chunk_idle_period: 15m  # This increases the idle period before flushing a chunk
  max_chunk_age: 2h  

limits_config:
  split_queries_by_interval: 5m
  max_query_parallelism: 64
  max_streams_per_user: 30000
  max_global_streams_per_user: 0

这是我的 loki 服务文件:

[Unit]
Description=Loki service
After=network.target

[Service]
Type=simple
User=loki
ExecStart=/usr/local/bin/loki-linux-amd64 -config.file /usr/local/bin/config-loki.yml

[Install]
WantedBy=multi-user.target

我正在使用这些版本:

洛基2.4.7_4

Grafana 版本 10.1.1

我该如何解决这个问题?我感觉Loki完成任务的速度变慢了。

grafana monitoring grafana-loki
1个回答
0
投票

我发现此问题的原因是内存或 CPU 使用率较高。请考虑升级您的硬件以确保操作更流畅。

升级后,旋转器不再旋转那么多,并且加载时间很短。

© www.soinside.com 2019 - 2024. All rights reserved.