Use the strptime function to convert the time into epoch form then use strftime to convert the epoch into the desired result.
| eval foo = strftime(strptime(foo, "%Y-%m-%dT%H:%M:%S%Z"), "%Y-%m-%d %H:%M:%S")
Use the strptime function to convert the time into epoch form then use strftime to convert the epoch into the desired result.
| eval foo = strftime(strptime(foo, "%Y-%m-%dT%H:%M:%S%Z"), "%Y-%m-%d %H:%M:%S")