InfluxDB 与 ONOS 集成

Integrating InfluxDB with ONOS

我已经按照https://wiki.onosproject.org/display/ONOS/InfluxDB+Report+and+Query+Application中的所有步骤进行操作,但是我无法将ONOS与InfluxDB集成。

配置完文档中的所有内容后,我在 InfluxDB 中执行 "SHOW MEASUREMENTS" 但没有任何显示,因为我创建的数据库是空的,ONOS 不会在其中发布指标。

为了 运行 正确,我必须编辑任何配置文件吗?

非常感谢您的帮助。

我试过文档,它缺少一些信息。这是我所做的:

我的 OS 是 Ubuntu:

yavuz@ubuntu:/opt/onos/apache-karaf-3.0.8/data/log$ uname -a
Linux ubuntu 4.4.0-83-generic #106-Ubuntu SMP Mon Jun 26 17:54:43 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

我已经安装了 influxdb 版本 0.10.0

Note that ONOS supports InfluxDB up to 0.10.3. The InfluxDB which has higher version number will not work properly with ONOS.

curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
source /etc/lsb-release
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
sudo apt-get update
sudo apt-get install influxdb=0.10.0+dfsg1-1
sudo service influxdb start
sudo apt-get install influxdb-client

在 influx 上创建 onos 数据库

yavuz@ubuntu$ influx
Visit https://enterprise.influxdata.com to register for updates, InfluxDB server management, and monitoring.
Connected to http://localhost:8086 version 0.10.0
InfluxDB shell 0.10.0
CREATE DATABASE onos
use onos
CREATE USER onos WITH PASSWORD 'onos.password' WITH ALL PRIVILEGES

现在,influxdb 已准备就绪。然后,我安装了 ONOS 1.10.2:

cd /opt
sudo wget -c http://downloads.onosproject.org/release/onos-1.10.2.tar.gz
sudo tar xzf onos-1.10.2.tar.gz
sudo mv onos-1.10.2 onos
sudo /opt/onos/bin/onos-service start

Be sure to run ONOS with sudo, otherwise influxdb gives permission errors.

启动后OS 控制台安装 influxdb 功能:(文档中遗漏了这一点)

feature:install onos-apps-influxdbmetrics

激活应用程序

app activate org.onosproject.influxdbmetrics

最后一招,influxdb默认地址是localhost,会导致解析错误,可以将这个值设为127.0.0.1

cfg set org.onosproject.influxdbmetrics.InfluxDbMetricsConfig address 127.0.0.1

你可以尾karaf.log来控制在这些步骤中是否发生错误。几秒钟后,这是查询结果

希望对您有所帮助。