Hello Splunkers,
I want your help to understand different responses of stats and chart command output. In First output with STATS command, date and time showing correctly in the last column.
index=index1*|.....
| search issueType = "Bug" AND (Status = "In QA" OR Status = "In Dev") AND (priority = P1 OR priority = P2 OR priority= P3) AND (key = "CORE-26985" OR key = "CORE-37789")
| stats min(update) as qaStatusDateMin by key,Status
But when I use chart command then only year is showing instead of date and time under newly generated columns named "In QA" and "In Dev"
| fillnull value="None" labels
| search issueType = "Bug" AND (Status = "In QA" OR Status = "In Dev") AND (priority = P1 OR priority = P2 OR priority= P3) AND (key = "CORE-26985" OR key = "CORE-37789")
| chart min(update) as qaStatusDateMin by key,Status
I hope, I have explained my question here in detail. Please help me to understand the logic behind this output response.
Your help will be appreciated!
... View more