sourcegraph / appdash

Application tracing system for Go, based on Google's Dapper.
https://sourcegraph.com
Other
1.72k stars 137 forks source link

Move InfluxDBStore into experimental subpackage; hide Dashboard for now. #172

Closed slimsag closed 8 years ago

slimsag commented 8 years ago

We've seen that InfluxDBStore hasn't lived up to our expectations, and have been encountering performance problems (particularly RAM usage problems) with it. It has been the source of a great amount of instability within Appdash, and while it's likely to improve in the future, the current plan is to move it into an experimental subpackage and potentially pick it back up in the future (though there are no current plans to do so).

Users will need to update according to the following table:

Before After
appdash.InfluxDBAdminUser influxdbstore.AdminUser
appdash.InfluxDBRetentionPolicy influxdbstore.RetentionPolicy
appdash.InfluxDBConfig influxdbstore.Config
appdash.NewInfluxDBConfig influxdbstore.NewConfig
appdash.NewInfluxDBStore influxdbstore.New
appdash.InfluxDBStore influxdbstore.Store
keegancsmith commented 8 years ago

glad to see the removal of vendor!

also LGTM