I want the Day name of record_created_at
here, as MONDAY
, TUESDAY
, ... Format
I tried with the below, i'm getting the only first 3 letters and that too in Title case,
{
"date_histogram": {
"calendar_interval": "day",
"field": "record_created_at",
"format": "E"
}
}
How can i can get full day name in Upper case?