ESQL - diff with NOW()

You can use DATE_DIFF. See this example for another dataset:

FROM person
| LIMIT 1
| EVAL age = DATE_DIFF("year", dateOfBirth, NOW())
1 Like