├── .gitignore ├── .hsdoc ├── LICENSE ├── Procfile ├── README.md ├── config └── default.yaml ├── docs └── getting_started │ └── choosing_a_stats_service.md ├── init └── bucky-server.conf ├── lib ├── configWrapper.coffee ├── influxdb.coffee ├── load.coffee ├── opentsdb.coffee └── statsd.coffee ├── modules ├── auth.coffee ├── collectionLogger.coffee ├── collectors.coffee ├── influxdb.coffee ├── openTSDB.coffee ├── statsd.coffee └── trustProxy.coffee ├── package.json ├── server.coffee └── start.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | config/runtime.json 3 | -------------------------------------------------------------------------------- /.hsdoc: -------------------------------------------------------------------------------- 1 | name: "Bucky Server" 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: "./start.js" 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/README.md -------------------------------------------------------------------------------- /config/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/config/default.yaml -------------------------------------------------------------------------------- /docs/getting_started/choosing_a_stats_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/docs/getting_started/choosing_a_stats_service.md -------------------------------------------------------------------------------- /init/bucky-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/init/bucky-server.conf -------------------------------------------------------------------------------- /lib/configWrapper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/lib/configWrapper.coffee -------------------------------------------------------------------------------- /lib/influxdb.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/lib/influxdb.coffee -------------------------------------------------------------------------------- /lib/load.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/lib/load.coffee -------------------------------------------------------------------------------- /lib/opentsdb.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/lib/opentsdb.coffee -------------------------------------------------------------------------------- /lib/statsd.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/lib/statsd.coffee -------------------------------------------------------------------------------- /modules/auth.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/modules/auth.coffee -------------------------------------------------------------------------------- /modules/collectionLogger.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/modules/collectionLogger.coffee -------------------------------------------------------------------------------- /modules/collectors.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/modules/collectors.coffee -------------------------------------------------------------------------------- /modules/influxdb.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/modules/influxdb.coffee -------------------------------------------------------------------------------- /modules/openTSDB.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/modules/openTSDB.coffee -------------------------------------------------------------------------------- /modules/statsd.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/modules/statsd.coffee -------------------------------------------------------------------------------- /modules/trustProxy.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/modules/trustProxy.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/package.json -------------------------------------------------------------------------------- /server.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/server.coffee -------------------------------------------------------------------------------- /start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/BuckyServer/HEAD/start.js --------------------------------------------------------------------------------