haproxy-stats

Get HAProxy statistics in JSON format via HTTP request. Check docs for more info.

Usage no npm install needed!

<script type="module">
  import haproxyStats from 'https://cdn.skypack.dev/haproxy-stats';
</script>

README

haproxy-stats

Get HAProxy statistics in JSON format via HTTP request.
Check docs for more info.

Install

$ npm install --save haproxy-stats

Usage

var haStats = require('haproxy-stats');
haStats('http://localhost:1337/stats;csv;norefresh', function(err, data) {
    console.log(data)
    // => { 'ws': {'ws1': {qcur: 12, qmax: 0, scur: 355 ...}, 'ws2': {qcur: 0, qmax: 0, scur: 301 ...} } }
})

License

MIT © Nikolay Spiridonov