Dart
Disclaimer: This is a community-maintained package built by Rohith Gilla.
Installation
Install the package via dart pub:
Usage
Import the Library
First, import the package into your Dart code:
Initialize the Client
Next, initialize the TelemetrySh
instance with your API key:
Log Some Data
Telemetry automatically creates tables when data is logged. In this example, we log some Uber ride data to a table called uber_rides
. Telemetry will automatically create this table and its corresponding schema with columns: city
, price
, and timestamp
.
Query Some Data
You can query the data using SQL through the query API:
Last updated