1.1.1 • Published 2 years ago
aggressio v1.1.1
Response Aggregating HTTP Proxy for Timeseries APIs & Friends
Motivation
Aggress-IO distributes queries across multiple API targets, aggregating results into a unique response.
It has been tested with InfluxDB, Clickhouse and Loki.
Options
Aggress-IO can use either of the following modes to accomodate the preferred response aggregation method:
concatcombinereplace
Usage
global
npm install -g aggressioSERVERS=http://loki1:3100,http://loki2:3100 PORT=3100 MODE=concat aggressionpm
To start manually, populate the ENV variables as per example and run:
SERVERS=http://influxdb1:8086,http://influxdb2:8086 PORT=9999 MODE=concat npm startpm2
To manage the service using PM2, edit the aggressio.config.js file with the ENV variables and run:
pm2 [start|restart|stop|delete] aggressio.config.jsdocker
To start using Docker, populate the ENV variables as per example and run:
sudo docker run \
-e SERVERS=http://influxdb1:8086,http://infludb2:8086 \
-e PORT=8089 \
-e MODE=concat \
-p 8089
--rm qxip/aggressio:latest