Suppose by running "kube_pod_completion_time - kube_pod_start_time" query we get these series:
How can we merge these series into one
ignoring pod label) so we can graph pod lifetimes over time?
I have tried these but with no luck:
* Using label_replace to drop:
label_replace(kube_pod_completion_time - kube_pod_start_time, "pod", "", "pod", ".*")
Error executing query: duplicated label set in output of label_replace(): {app="kube-state-metrics", exported_namespace="my-namespace", instance="10.130.0.161:8080", job="service-endpoints", namespace="monitoring", service_name="kube-state-metrics"}
* and many combinations of
without(pod) and
ignoring(pod) but those didn't work as well.