Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upSupport left/right_elementwise for operators #506
Comments
This comment has been minimized.
This comment has been minimized.
|
This is covered by #393. For that particular use case I'm not sure that's the best way to model it, missing time series are difficult to deal with at the best of times (http://prometheus.io/docs/practices/instrumentation/#avoid-missing-metrics). I'd suggest for determining the duration of batch jobs to export the duration as a separate gauge, see http://prometheus.io/client_java/io/prometheus/client/exporter/PushGateway.html for a Java example. |
brian-brazil
closed this
Feb 5, 2015
This comment has been minimized.
This comment has been minimized.
lock
bot
commented
Mar 24, 2019
|
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
lock
bot
locked and limited conversation to collaborators
Mar 24, 2019
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
mwitkow commentedFeb 5, 2015
When operating on vectors:
my_stuff_started - my_stuff_stopped, where both have atypelabel, the entries inmy_stuff_startedthat don't have a matchingmy_stuff_stoppedentry are removed from results. That's understandable, operators do a full join.However, it should be possible to say that I want to retain stuff from
my_stuff_startedeven if it is not present inmy_stuff_stopped.I understand that best practices are to prepopulate all your labels with default values, but sometimes it's impossible.
Are there any plans to implement left/right_elementwise