Questions tagged [tempodb]

TempoDB is a database service for time series data.

TempoDB is a database service for time series data.

It is optimized for storing and analyzing data that looks like this:

2014-01-03T14:23:33.000+0600, 52.113
2014-01-03T14:23:34.000+0600, 51.762
2014-01-03T14:23:35.000+0600, 49.2
2014-01-03T14:23:36.000+0600, 49.7123
2014-01-03T14:23:37.000+0600, 50.43

The first part is a timestamp in ISO8601 format. The second part is a number, which can be a double, float, or integer.

Home: https://tempo-db.com/

3 questions
2
votes
2 answers

How do I convert a tempodb DataSet into actual numbers and get the timestamp?

I am reading values from my tempodb database using the following code: import datetime from tempodb import Client client = Client("key", "secret") start = datetime.datetime(2014, 3, 28) end = datetime.datetime(2014, 3, 29) data =…
user3408589
1
vote
2 answers

Time-series database with php

Currently I'm using rrdtool to create time-series based databases & charts with php and i'm lately moving to laravel and porting my code. Is there any existing library for php that can work with redis,mongodb, rethinkdb or tempo-db that can help me…
HuseyinUslu
  • 4,094
  • 5
  • 33
  • 50
0
votes
1 answer

Does Jaeger support Grafana Tempo backend?

im starting with tracing tools. I would like to use Grafana Tempo backend storage and as UI Jaeger. Is possible that this stack will work together? Im running that in docker via official docker-compose files. I checked Jaeger documentation and did…