Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gauge read at startup then disapears #4512

Open
Filigran-Automation opened this issue Mar 27, 2025 · 1 comment
Open

Gauge read at startup then disapears #4512

Filigran-Automation opened this issue Mar 27, 2025 · 1 comment
Labels
bug Something isn't working

Comments

@Filigran-Automation
Copy link

Describe your environment

OS: debian
Python version: 3.11.2
SDK version: 1.31 & 1.24
API version: 1.31 & 1.24

What happened?

I expect the following code to show both gauge & counter every 1s in the console (or when scrapped by prometheus client) but it does not. counter is always there. gauge is there when launching the script (very first seconds) then disapears.


import random
import time

from prometheus_client import start_http_server

from opentelemetry.exporter.prometheus import PrometheusMetricReader
from opentelemetry.metrics import get_meter_provider, set_meter_provider
from opentelemetry.sdk.metrics import MeterProvider
from opentelemetry.sdk.metrics.export import (
    ConsoleMetricExporter,
    PeriodicExportingMetricReader,
)

# Start Prometheus client
start_http_server(port=8000, addr="0.0.0.0")
# Exporter to export metrics to Prometheus
prefix = "MyAppPrefix"
reader = PrometheusMetricReader(prefix)
reader2 = PeriodicExportingMetricReader(ConsoleMetricExporter(), export_interval_millis=1_000)
# Meter is responsible for creating and recording metrics
set_meter_provider(MeterProvider(metric_readers=[reader, reader2]))
meter = get_meter_provider().get_meter("view-name-change", "0.1.2")

my_counter = meter.create_counter("my.counter")
my_gauge = meter.create_gauge("my.gauge")

while 1:
    my_gauge.set(random.randint(1, 10))
    my_counter.add(random.randint(1, 10))
    time.sleep(61)

Steps to Reproduce

run the script above

Expected Result

gauge to be exported properly

Actual Result

gauge is not exported properly

Additional context

No response

Would you like to implement a fix?

No

@Filigran-Automation Filigran-Automation added the bug Something isn't working label Mar 27, 2025
@emdneto
Copy link
Member

emdneto commented Apr 3, 2025

This is the expected behavior no? Like, gauge uses LastValueAggregation, it will be exported when you have a new value to export, like when you call gauge.set() again

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants