9289cd0987
This helps verify Kibana is working properly by using Selenium Webdriver to navigate to different index dashboards and takes screenshot of each one. It also add the scripts to the gates for single and multinode deployments. Change-Id: Ic2c91734d1eaac0ea4e7985bf69082942166715d
9 lines
698 B
Bash
Executable File
9 lines
698 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export KIBANA_USER="admin"
|
|
export KIBANA_PASSWORD="changeme"
|
|
export KIBANA_LOGSTASH_URI="kibana.osh-infra.svc.cluster.local/app/kibana#/discover?_g=()&_a=(columns:!(_source),index:'logstash-*',interval:auto,query:(match_all:()),sort:!('@timestamp',desc))"
|
|
export KIBANA_KERNEL_URI="kibana.osh-infra.svc.cluster.local/app/kibana#/discover?_g=()&_a=(columns:!(_source),index:'kernel-*',interval:auto,query:(match_all:()),sort:!('@timestamp',desc))"
|
|
export KIBANA_JOURNAL_URI="kibana.osh-infra.svc.cluster.local/app/kibana#/discover?_g=()&_a=(columns:!(_source),index:'journal-*',interval:auto,query:(match_all:()),sort:!('@timestamp',desc))"
|
|
python tools/gate/selenium/kibanaSelenium.py
|