I am displaying a line chart and the tool tip text only showing Y axis field. I want to customize the tooltip text that is chart overlay value to third field. Below is my search query
sourcetype="<website Monitoring>" title="url1" | eval status=case(response_code == 200, "Online",response_code == "", "Offline", response_code ==404, "Not found", response_code == 500, "Internal Server Error") | timechart count by status | eval clust=case(title == "url1", "admin",title == "url2", "Cluster 1") | fields _time clust
I want url to be displayed in the tooltip text (field=clust) Please provide your expertise on how to achieve this.