我正在尝试为石墨配置 grafana。我使用下面的链接来配置石墨。Graphite 在我的笔记本电脑上的 8080 端口上运行。我能够使用我创建的示例项目发送数据,并且能够在石墨 UI 上看到相同的图表。我通过端口 2003 即端口向石墨发送数据碳在其上运行。石墨安装 - https://gist.github.com/albertohm/5697429
我现在正在尝试配置 grafana 以显示石墨上存在的数据。我使用下面的链接来配置 grafana。我只在配置文件中进行了更改。当我单击 index.html 文件时,我可以看到 grafana UI,但它没有显示石墨上存在的数据。有人可以帮我解决这个问题。Grafana 安装链接 - http://grafana.org/docs/
所有服务都在我的笔记本电脑上运行。
下面是我在 grafana 上使用的配置文件。
define(['settings'],
function (Settings) {
return new Settings({
datasources: {
graphite: {
type: 'graphite',
url: "http://127.0.0.1:8080",
default: true,
//render_method: 'GET',
}
},
/* Global configuration options
* ========================================================
*/
// specify the limit for dashboard search results
search: {
max_results: 20
},
// default home dashboard
default_route: '/dashboard/file/default.json',
//default_route: '/opt/graphite/webapp/graphite/dashboard',
// set to false to disable unsaved changes warning
unsaved_changes_warning: true,
// set the default timespan for the playlist feature
// Example: "1m", "1h"
playlist_timespan: "1m",
// If you want to specify password before saving, please specify it bellow
// The purpose of this password is not security, but to stop some users from accidentally changing dashboards
admin: {
password: ''
},
// Change window title prefix from 'Grafana - <dashboard title>'
window_title_prefix: 'Grafana - ',
// Add your own custom panels
plugins: {
// list of plugin panels
panels: [],
// requirejs modules in plugins folder that should be loaded
// for example custom datasources
dependencies: [],
}
});
});
提前致谢。