我有这个程序:
var planetStream = require('../../');
var app = require('http').createServer(handler);
var io = require('socket.io')(app);
var fs = require('fs');
app.listen(8000);
function handler (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200);
res.end(data);
});
}
var diffs = planetStream();
var buildings = diffs
.map(JSON.parse)
.filter(function (x) {
return x.action === 'create' && x.type === 'way' &&
x.tags.building;
});
buildings.onValue(function (x) {
console.log(x);
io.emit('buildings', x);
});
对于数据监控,我需要在keen.io中管道。有人知道怎么做或以前做过吗?
问候
安德烈
答案 0 :(得分:0)
好吧,我找到了答案。 要将日期传递给keen.io,我们需要在HTML文件中实现所有代码。就我而言,它是index.html。
首先我们需要将此代码放在</head>
之前:
<script type="text/javascript">
!function(a,b){a("Keen","https://d26b395fwzu5fz.cloudfront.net/3.4.0-rc/keen.min.js",b)}(function(a,b,c){var d,e,f;c["_"+a]={},c[a]=function(b){c["_"+a].clients=c["_"+a].clients||{},c["_"+a].clients[b.projectId]=this,this._config=b},c[a].ready=function(b){c["_"+a].ready=c["_"+a].ready||[],c["_"+a].ready.push(b)},d=["addEvent","setGlobalProperties","trackExternalLink","on"];for(var g=0;g<d.length;g++){var h=d[g],i=function(a){return function(){return this["_"+a]=this["_"+a]||[],this["_"+a].push(arguments),this}};c[a].prototype[h]=i(h)}e=document.createElement("script"),e.async=!0,e.src=b,f=document.getElementsByTagName("script")[0],f.parentNode.insertBefore(e,f)},this);
</script>
比我们需要在<body></body>
此代码中实现:
var client = new Keen({
projectId: "YOUR_PROJECT_ID",
writeKey: "YOUR_WRITE_KEY"
});
您可以在启动新项目后在keen.io中找到project_ID和Your_Write_key。 最后一步是实现这个功能:
client.addEvent("osm_20_01", { key: data.nodes });
osm_20_01是您将在项目中找到的事件集合的名称。 key是值的名称。 &#39; data.nodes&#39;是值。