You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
…n-telemetry#1695)
- Convert the output of run commands to a string that is readable.
- No need to `docker rm ...` test containers for `npm run test:local` usage
because the `docker run --rm ...` option will remove them when stopped.
Hello everyone,
I'd like to set
_appendTimestamp
tofalse
for aPrometheusSerializer
instance that is part of aPrometheusExporter
object.I saw that
PrometheusSerializer
has a property named_appendTimestamp
which is defined in its constructor:opentelemetry-js/packages/opentelemetry-exporter-prometheus/src/PrometheusSerializer.ts
Lines 141 to 146 in 3f72613
Also, I saw that the only place where
PrometheusSerializer
is instantiated is in the constructor method ofPrometheusExporter
:opentelemetry-js/packages/opentelemetry-exporter-prometheus/src/PrometheusExporter.ts
Line 59 in 3f72613
However, as
PrometheusExporter
instantiatesPrometheusSerializer
passingprefix
only, I can't control the value ofappendTimestamp
.Is there any way to set
appendTimestamp
tofalse
in this case?Thanks.
The text was updated successfully, but these errors were encountered: