HI,
I am receiving data from Solarwinds Server and it is in following format
November 27, 2019 8:34 AM
I need to convert it in to DD/MM/YYYY HH:MM format.
how to do this
Hi
Try this
| makeresults
| eval test="November 27, 2019 8:34 PM"
| eval result=strftime(strptime(test,"%B %d, %Y %I:%M %p"),"%d/%m/%Y %H:%M")
Thanks for help.
In worked
Please accept the answer