有没有一种方法可以在java中嵌入logstash

q8l4jmvw  于 2021-06-13  发布在  ElasticSearch
关注(0)|答案(1)|浏览(428)

我所在的应用程序中有一个测试,它嵌入了一个elasticsearch示例(基于.zip文件),并在类正确写入该elasticsearch时使用它进行tst,如下所示:

embeddedElastic = EmbeddedElastic.builder()
            .withElasticVersion("5.5.2")
            .withInResourceLocation("./libs/elasticsearch-5.5.2.zip")
            .withStartTimeout(300L, TimeUnit.SECONDS)
            .withSetting(PopularProperties.HTTP_PORT, elasticPort)
            .build()

它正在使用这个库:https://github.com/allegro/embedded-elasticsearch
有没有类似于这个图书馆的藏书室?
谢谢

mwkjh3gx

mwkjh3gx1#

您可以从java程序中以命令行的形式执行logstash

相关问题