0

我必须在 docker-compose 文件中定义容器

  nmaster:
    build: 
      context: dotNet/
      dockerfile: Src/My.Api/Api/Dockerfile
    restart: always  
    ports:
     - '80:80' 
    volumes:
      - app-volume:/dotNet/Logs

和收藏家

otel-collector:
    image: otel/opentelemetry-collector-contrib:0.22.0
    command: ["--config=/etc/otel-collector-config.yaml", ""]
    volumes:
      - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml
      - app-volume:/dotNet/Logs
    ports:
      - "4317:4317" 
      - "8888:8888" 
      - "8889:8889

共享卷

 volumes:
         app-volume: 

在 otel-collector-config.yaml 中

尝试读取该日志文件

receivers:
  otlp:
    protocols:
      grpc:
      http:
  filelog:
    include: [/app-volume/Logs/app.log ]
    start_at: beginning

在此处输入图像描述

但是我遇到了找不到该文件的错误 在此处输入图像描述

4

0 回答 0