The max aggregator needs a field to work with, not a calculated value
sourcetype=timekeeper_status host=* | eval offsets=(offsets."0")
| eval absoffsets=abs(offsets."0")
| timechart span=30s max(absoffsets) by host
already tried it but im getting this error :
Error in 'eval' command: The arguments to the 'abs' function are invalid.
sourcetype=timekeeper_status host=* | eval offsets=(offsets."0")
| eval absoffsets=offsets."0"
| eval absoffsets=abs(absoffsets)
| timechart span=30s max(absoffsets) by host
no results ...