Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 482 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 482 Bytes

aws-timestream

Sandbox for Timestream.

Create the infrastructure:

terraform init
terraform apply -auto-approve

Install dependencies:

yarn install

Run the script to send data to Timestream:

yarn run app

After writing data, connect to the console and run a query:

SELECT * FROM "timestream-sandbox"."orders" WHERE time between ago(15m) and now() ORDER BY time DESC LIMIT 10 

Clean-up

terraform destroy -auto-approve