ethan256

Results 16 comments of ethan256

@ktpktr0 根据[victorialogs官方文档](https://docs.victoriametrics.com/victorialogs/data-ingestion/#http-parameters)描述,_msg变量必须存在。你可能需要在URL中添加_msg_feild参数指定_msg。 我使用下列配置可以将日志输出到victorialogs > ```yaml > enable: true > inputs: > - Type: service_docker_stdout > Stderr: true > Stdout: true > processors: > - Type: processor_json > SourceKey: content >...

> Hi @ethan256, do you have some real-world motivation for wanting to introduce a pool? When I pressure tested it, I found that the program has a high GC percentage,...

> sure we don't leak any slice references that would then get put back in the pool and re-used while not actually free. I agree with this, there are indeed...

@GGbind You may need to make the local machine trust your self-signed certificate by executing the following command: ```shell cp /path/to/your_ca.crt /etc/pki/ca-trust/source/anchors/extca.crt update-ca-trust ```

@Utkarsh-vishnoi I successfully pushed the mirror value private harbor on Ubuntu 22.04 TLS using the following method. 1. Generate a ca certificate using openssl and issue a harbor certificate. 2....

> I am having the exact same problem and I couldn't make it work. Running update-ca-certificates is not an option for me, but even when I tried, it didn't work....

docker info: ``` Client: Docker Engine - Community Version: 26.1.3 Context: default Debug Mode: false Plugins: buildx: Docker Buildx (Docker Inc.) Version: v0.14.0 Path: /usr/libexec/docker/cli-plugins/docker-buildx compose: Docker Compose (Docker Inc.)...

Docker file: ``` FROM {your_private_registry}/docker.io/alpine:3.18 # TARGETOS and TARGETARCH are set automatically when --platform is provided. ARG TARGETOS TARGETARCH LABEL license='SPDX-License-Identifier: Apache-2.0' \ copyright='Copyright (c) 2019-2021: IoTech Ltd' RUN sed...