Skip to content
Snippets Groups Projects
Commit 56d11f71 authored by Kalle Vuorjoki's avatar Kalle Vuorjoki
Browse files

Issue #3229401 by bsfajardo, niknak: Indices [.geoip_databases] use and access...

Issue #3229401 by bsfajardo, niknak: Indices [.geoip_databases] use and access is reserved for system operations
parent f3efa345
Branches
No related merge requests found
......@@ -23,6 +23,11 @@ function elasticsearch_connector_views_views_data() {
// TODO: Handle aliases also, not only indices.
if (!empty($indices['indices'])) {
foreach ($indices['indices'] as $index_name => $index_info) {
// Ignore system indices
if (strpos($index_name, '.') === 0) {
continue;
}
$name = new FormattableMarkup(
'@cluster (@index_name)', array(
'@cluster' => $cluster->name,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment