Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Kinesis Firehose 在弹性搜索中推送两种不同的工具数据。我需要在 Kibana 中显示数据,我可以单独执行但我希望这两个索引显示在单个索引中,这意味着要合并索引并显示。
两个索引名称彼此不同。例子:
第一个索引 - 动物 第二个索引 - 人类 以单一索引、物种显示。
您可以在 ElasticSearch 中为您的索引创建一个别名,例如 POST 到
your.elasticsearch.domain/_aliases
身体:
{ "actions" : [ { "add" : { "indices" : ["Animal", "Human"], "alias" : "Species" } }, ] }
然后您应该能够在 Kibana 中使用 Species 作为索引模式。