I can't see your screenshots, but you can now customize the available quick ranges by setting timepicker:quickRanges
in Kibana under Management --> Advanced Settings. For example this is what I use as my standard:
[
{
"from": "now/d",
"to": "now/d",
"display": "Today",
"section": 0
},
{
"from": "now/w",
"to": "now/w",
"display": "This week",
"section": 0
},
{
"from": "now/M",
"to": "now/M",
"display": "This month",
"section": 0
},
{
"from": "now/d",
"to": "now",
"display": "Today so far",
"section": 0
},
{
"from": "now/w",
"to": "now",
"display": "Week to date",
"section": 0
},
{
"from": "now/M",
"to": "now",
"display": "Month to date",
"section": 0
},
{
"from": "now-15m",
"to": "now",
"display": "Last 15 minutes",
"section": 1
},
{
"from": "now-30m",
"to": "now",
"display": "Last 30 minutes",
"section": 1
},
{
"from": "now-1h",
"to": "now",
"display": "Last 1 hour",
"section": 1
},
{
"from": "now-2h",
"to": "now",
"display": "Last 2 hours",
"section": 1
},
{
"from": "now-4h",
"to": "now",
"display": "Last 4 hours",
"section": 2
},
{
"from": "now-12h",
"to": "now",
"display": "Last 12 hours",
"section": 2
},
{
"from": "now-24h",
"to": "now",
"display": "Last 24 hours",
"section": 2
},
{
"from": "now-48h",
"to": "now",
"display": "Last 48 hours",
"section": 2
},
{
"from": "now-7d",
"to": "now",
"display": "Last 7 days",
"section": 3
},
{
"from": "now-30d",
"to": "now",
"display": "Last 30 days",
"section": 3
},
{
"from": "now-60d",
"to": "now",
"display": "Last 60 days",
"section": 3
},
{
"from": "now-90d",
"to": "now",
"display": "Last 90 days",
"section": 3
}
]