I am using the following promql to retrieve the delta for an interface metric comparing the values now and 1h ago. (And fire an alert when there is an increase):
round(delta(ifInErrors{interfacealias=~"ISP.*|INF.*", datacenter="MyDataCenter"}[1h])) > 0
Is there a way to get the current value of the specific metric as well along with the delta? I am asking this because I want to present in the alert description something like "ifInErrors for device mydevice have increased by delta the last hour and have reached current_value"