Alex Medveshchek

Results 3 comments of Alex Medveshchek

Found a solution in the #95 ([here](https://github.com/portainer/agent/issues/95#issuecomment-1368224991)), TL;DR: add the env var `AGENT_CLUSTER_ADDR=localhost`: ``` docker run -d \ -e AGENT_CLUSTER_ADDR=localhost \ -p 9001:9001 \ --name portainer_agent \ --restart=always \ -v...

Do you guys use `permissions` in your .yaml-file? If so, try to add permissions for checkout, because apparently adding a permission in one section revokes other perms of the "parent"...

I've worked it around by implementing gauge using the example of OpenTelemetry `telemetrygen` tool, which submits the `Gauge` metrics by default: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/cmd/telemetrygen/internal/metrics/worker.go#L52-L64 Will replace my workaround with the original synchronous...