Kibana: [SR] Snapshot name forced to lowercase

Created on 28 Nov 2019  路  3Comments  路  Source: elastic/kibana

Kibana version: 7.4.1

Elasticsearch version: 7.4.1

Original install method (e.g. download page, yum, from source, etc.):

# docker-compose.yml
version: '2'
services:
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:7.4.1
    container_name: elasticsearch
    environment:
      - discovery.type=single-node
      - bootstrap.memory_lock=true
      - path.repo=/usr/share/elasticsearch/snapshot
      - ES_JAVA_OPTS=-Xms512m -Xmx512m
    ulimits:
      memlock:
        soft: -1
        hard: -1
    ports:
      - '9200:9200'
    volumes:
      - '.\data:/usr/share/elasticsearch/data'
      - '.\snapshot:/usr/share/elasticsearch/snapshot'
  kibana:
    image: docker.elastic.co/kibana/kibana:7.4.1
    container_name: kibana
    ports:
      - '5601:5601'

Describe the bug: When creating a new snapshot policy on Kibana, snapshot name forced to lowercase even if it containing date math.

Steps to reproduce:

  1. Go to create a new snapshot policy
  2. Enter <snapshot-{now/d{yyyy.MM.dd|+09:00}}> in the snapshot name
  3. Go next

Expected behavior: Snapshot name can be lowercase, but some of date math (e.g. M) needs uppercase.

Screenshots (if relevant):
snapshot_name_to_lowercase

Snapshot and Restore Elasticsearch UI bug good first issue v7.4.1

Most helpful comment

Just to add a comment: the SLM API works correctly (the date math is not lower-cased).

All 3 comments

Pinging @elastic/es-ui (Team:Elasticsearch UI)

Just to add a comment: the SLM API works correctly (the date math is not lower-cased).

++

Was this page helpful?
0 / 5 - 0 ratings

Related issues

timroes picture timroes  路  3Comments

celesteking picture celesteking  路  3Comments

tbragin picture tbragin  路  3Comments

bradvido picture bradvido  路  3Comments

socialmineruser1 picture socialmineruser1  路  3Comments