I've recently started using InfluxDB for monitoring my NodeJS application in combination with Numbat. I think it's really neat and easy to setup. But I was wondering if I could use it to keep track of customer resource usages by sending metrics of their usages to InfluxDB. I would need to keep track of these customers on a per minute and month basis. The metrics come from MongoDB and CloudStack and would be retrieved on a regular interval( less than 1min).
example of an event for some metrics concerning cpu,gp:
usage,disk_space=100,servers_on_count=4 customer=microsoft
usage,disk_space=90,server_on_count=5 customer=apple
Is this something that would be feasible or would you suggest another approach?