I am gathering time series data from the game "Patrician 3" (inventory of each town and trading office), which takes place in the middle ages (1300+). Since transforming time series data into graphs is a solved problem, I'd like to use an established solution instead of building my own.
I have tried InfluxDB + Grafana, but have encountered two issues:
- The minimum value for InfluxDB timestamps is
1677-09-21T00:12:43.145224194Z
, more than 300 years too late. - Grafana has very nice relative time ranges, but they all revolve around (the real)
now
, whereas mynow
is the timestamp of the latest data point (which is some day and time in the middle ages).
I have mitigated the first issue by adding a few hundred years to my timestamps, but I have found no way to manipulate the Grafana time range from dashboard variables. I found one person with a similar problem in the grafana community forum, but they got no response. Feature requests going into that direction exist, but see no progress. The other direction appears to work, though.
Are there any time series database and visualization frameworks that support this use case? Did I miss any solutions for this problem with InfluxDB+Grafana?