Good afternoon everyone! I am looking at migrating my time series data from AWS Timestream to MongoDB Timeseries. I have multiple measures right now, but I was thinking of compressing the data packet into a single time stream document. I can’t find much information on doing this, or if it’s recommended but ideally this is what my data packet looks like…
data = {
id: "",
serial: "",
temp: "",
volt: "",
peak_current: "",
peak_volt: "",
}
Can I just use a collection like this…
timestamp: timestamp
metadata: serial
measure: data
Thanks for the help! My time series costs are currently killing me so I need to bring them down.