1 Pluspunkt 0 Minuspunkte

Wie kann ich alle gespeicherten Elasticsearch Indices anzeigen?

C:\Windows\system32>curl -X GET "http://localhost:9200/_indices" -u elastic:*y_mEkRRJHEBLK7ird=*
{"error":{"root_cause":[{"type":"invalid_index_name_exception","reason":"Invalid index name [_indices], must not start with '_'.","index_uuid":"_na_","index":"_indices"}],"type":"invalid_index_name_exception","reason":"Invalid index name [_indices], must not start with '_'.","index_uuid":"_na_","index":"_indices"},"status":400}
C:\Windows\system32>
von  

2 Antworten

0 Pluspunkte 0 Minuspunkte

Du kannst dir alle API Endpunkte mit _cat anzeigen.

http://localhost:9200/_cat

Um alle Indices anzuzeigen

http://localhost:9200/_cat/indices
von (844 Punkte)  
0 Pluspunkte 0 Minuspunkte

Du kannst die ALiases abfragen.

http://localhost:9200/_aliases

von (1.1k Punkte)