I found this web service which should get me what I want https://ipgeolocation.io/documentation/timezone-api.html - I'd have thought there is a way in Splunk - Basically my starting point is the iplocation -all and I need to interpret the Country/State timezone expression # Get 'America/Los_Angeles' timezone information
$ curl 'https://api.ipgeolocation.io/timezone?apiKey=API_KEY&tz=America/Los_Angeles'
{
"timezone": "America/Los_Angeles",
"timezone_offset": -8,
"date": "2018-12-06",
"date_time": "2018-12-06 02:02:09",
"date_time_txt": "Thursday, December 06, 2018 02:02:09",
"date_time_wti": "Thu, 06 Dec 2018 02:02:09 -0800",
"date_time_ymd": "2018-12-06T02:02:09-0800",
"date_time_unix": 1544090529.989,
"time_24": "02:02:09",
"time_12": "02:02:09 AM",
"week": "49",
"month": "12",
"year": "2018",
"year_abbr": "18",
"is_dst": false,
"dst_savings": 1
}
... View more