我一直在寻找OpenDaylight Controller中可用的日志记录框架。 类似于ELK堆栈。
我发现apache蒸馏瓶是实现此目的的一种可能方法。 https://karaf.apache.org/manual/decanter/latest-1/
问题是,它在正常的karaf外壳上可以正常工作,但在Oxygen SR4版本的ODL karaf外壳上不能正常工作。
根据文档, https://karaf.apache.org/download.html#decanter-installation
feature:repo-add decanter
feature:install decanter-appender-elasticsearch
feature:install decanter-collector-log
feature:install decanter-collector-jmx
我在ODL karaf shell中尝试了相同的方法。 我下载了Oxygen-SR4二进制文件并启动了karaf shell。
./karaf clean Apache Karaf starting up. Press Enter to open the shell now... 100% [========================================================================]
Karaf started in 0s. Bundle stats: 13 active, 13 total
________ ________ .__ .__ .__ __
\_____ \ ______ ____ ____ \______ \ _____ ___.__.| | |__| ____ | |___/ |_
/ | \\____ \_/ __ \ / \ | | \\__ \< | || | | |/ ___\| | \ __\
/ | \ |_> > ___/| | \| ` \/ __ \\___ || |_| / /_/ > Y \ |
\_______ / __/ \___ >___| /_______ (____ / ____||____/__\___ /|___| /__|
\/|__| \/ \/ \/ \/\/ /_____/ \/
Hit '<tab>' for a list of available commands and '[cmd] --help' for help on a specific command. Hit '<ctrl-d>' or type 'system:shutdown' or 'logout' to shutdown OpenDaylight.
opendaylight-user@root>system:version
4.1.6
opendaylight-user@root>feature:repo-add decanter Adding feature url
opendaylight-user@root>feature:install decanter-appender-elasticsearch
org.apache.karaf.features.core[org.apache.karaf.features.internal.service.FeaturesServiceImpl] : null
但是同样的事情对于普通的Apache karaf外壳也适用。
./karaf
__ __ ____
/ //_/____ __________ _/ __/
/ ,< / __ `/ ___/ __ `/ /_
/ /| |/ /_/ / / / /_/ / __/
/_/ |_|\__,_/_/ \__,_/_/
Apache Karaf (4.2.5)
Hit '<tab>' for a list of available commands and '[cmd] --help' for help on a specific command. Hit '<ctrl-d>' or type 'system:shutdown' or 'logout' to shutdown Karaf.
karaf@root()> feature:repo-add decanter Adding feature url mvn:org.apache.karaf.decanter/apache-karaf-decanter/RELEASE/xml/features karaf@root()> feature:install decanter-appender-elasticsearch karaf@root()>
谁能指出这里缺少的内容,因为我觉得外壳版本很相似?
您还可以建议其他一些日志记录框架来处理OpenDaylight Controller(Oxygen SR4)中的Karaf日志和数据吗?
答案 0 :(得分:1)
我们在上游OpenDaylight系统测试中使用倾析器。我们的功能 安装(使用etc / org.apache.karaf.features.cfg中的featuresBoot变量是:
three.js R 104
但是,我们也将featuresRepository配置为具有:
odl-jolokia,decanter-collector-jmx,decanter-appender-elasticsearch
这是wiki page,其中包含一些额外信息。
这是我们获取数据以找到Mem Usage的示例, 安装elasticsearch,让我们将其视为graph over time
希望有帮助。