I’m currently working with data in Grafana that’s being ingested through Elasticsearch. The data includes fields such as:
@timestamp_id_index_source_typehighlightkubernetes.container_namekubernetes.docker_idkubernetes.namespace_namekubernetes.pod_namelognumeric_statuspod_phasesortstatusstatus_containersstatus_detailstatus_namespacestatus_phasestatus_podstatus_restarts
I want to display a graph showing status_pod (the name of the pod) and numeric_status (the pod status represented numerically). Currently, the graph only shows numeric_status over time, without displaying the pod names alongside their statuses.
Can anyone provide guidance on how to configure the graph to display both status_pod and numeric_status together? I need to visualize each pod’s status so that I can apply alerts based on this data.
Thank you!