Shawn Maddock

Results 44 comments of Shawn Maddock

Just came here to report the same issue. Thanks @lektriq for the detailed report. I used the same fix.

Just running into this myself, although I don't think it's specific to ECR. Rather it seems to be that `docker-push` does not respect the Docker context set nor have a...

Documentation: https://docs.docker.com/engine/context/working-with-contexts/ If we could set the `DOCKER_CONTEXT` environment variable, or the `--context` command-line argument like we can with `run_command` on the builder, that would work.

Yes, I got it working by installing Docker Desktop which setup `/var/run/docker.sock`. That is a workaround, though. Docker Desktop should not be a requirement for the Packer docker-push post-processor, as...

Echodot Red also supports this. MFA support should be tandard these days. My sshd_config: ``` PasswordAuthentication no ChallengeResponseAuthentication yes AuthenticationMethods publickey,keyboard-interactive ```

Alloy’s `otelcol` components are _mostly_ wrappers for the OpenTelemetry Collector, but the Prometheus exporter is an exception: https://github.com/grafana/alloy/blob/dcd92d4692c075bc18073dccaf0cd8762c2018ca/docs/sources/reference/components/otelcol/otelcol.exporter.prometheus.md?plain=1#L18 There are some opinionated choices documented in the code comments: https://github.com/grafana/alloy/blob/dcd92d4692c075bc18073dccaf0cd8762c2018ca/internal/component/otelcol/exporter/prometheus/internal/convert/convert.go#L431-L433 https://github.com/grafana/alloy/blob/dcd92d4692c075bc18073dccaf0cd8762c2018ca/internal/component/otelcol/exporter/prometheus/internal/convert/convert.go#L477-L479...

I know you're asking to do this in a custom resource detector; but wanted to make sure you were aware you can still set a custom service instance ID manually....

#1614 could aid in one approach to this.

Also https://opentelemetry.io/docs/specs/semconv/general/metric-requirement-level/#required states instrumentations must emit required metrics, with > 50% of libraries being compliant. So to me that answers the SDK vs extension question, in that it needs to...