0.9.2 • Published 2 years ago
alluvium v0.9.2
alluvium
Time-series analytics for static web servers.
Goals
- show number of requests over time (granular to the day)
- show response status codes by volume (200, 301, 304, 404, 401, etc)
- show number of requests by device type (desktop, mobile, tablet, tv, etc)
- show top referrer for each endpoint
alluvium.createClient(cfg)
var alluvium = require("alluvium").createClient()
alluvium.write(data ,callback)
alluvium.write({
"domain": "sintaxi.com",
"path": "/",
"status": 200,
"device": "phone",
"method": "get",
"referrer": null
})
alluvium.read(domain, options, callback)
alluvium.read("sintaxi.com", function(results){
console.log(results)
// returns...
{ version: '0.1.0', range: '2015-3-18', totals:
{ statuses: { '200': 152, '304': 520, '404': 76 },
visits:
{ '/about': 216,
'/contact': 152,
'/blog/hi': 152,
'/': 152,
'/not-exist': 76 },
devices: { phone: 368, desktop: 304, tablet: 76 } } }
})
0.9.2
2 years ago
0.8.4
4 years ago
0.9.0
4 years ago
0.9.1
4 years ago
0.8.3
4 years ago
0.8.1
4 years ago
0.8.0
4 years ago
0.8.2
4 years ago
0.7.14
4 years ago
0.7.13
4 years ago
0.7.12
4 years ago
0.7.11
4 years ago
0.7.10
4 years ago
0.7.9
4 years ago
0.7.8
4 years ago
0.7.7
4 years ago
0.7.6
4 years ago
0.7.5
4 years ago
0.7.4
4 years ago
0.7.3
4 years ago
0.7.2
4 years ago
0.7.1
4 years ago
0.7.0
4 years ago
0.6.3
4 years ago
0.6.2
4 years ago
0.6.4
4 years ago
0.6.1
4 years ago
0.6.0
4 years ago
0.5.0
4 years ago
0.4.0
10 years ago
0.3.0
10 years ago
0.2.0
10 years ago
0.1.0
10 years ago