Getting Started with Taskless Cloud
Taskless Cloud provides a fully managed telemetry platform that eliminates operational overhead while delivering enterprise-grade features. This guide will walk you through setting up Taskless Cloud from installation to running your first instrumented application.
- Installing the Taskless Loader
- Installing Taskless Packs
- Modifying your start command
Why Choose Cloud Over CLI?
Section titled “Why Choose Cloud Over CLI?”Taskless Cloud is perfect for teams and developers who want:
- A managed OLAP database - removes the burden of building out an observability stack for API services
- Cloud management - add and remove packs from your production runtime without redeploying your application
In addition to the benefits of the Open Source CLI:
- A full open source solution - Packs and the loader are fully open source
- Existing telemetry - Use Taskless alongside your current observability tools without vendor lock-in
Install the Taskless Loader
Section titled “Install the Taskless Loader”The Taskless loader is the core component that instruments your application. Install it for your programming language:
sh npm install @taskless/loader
Install Packs via Taskless Cloud
Section titled “Install Packs via Taskless Cloud”Taskless Cloud provides a curated collection of Packs, without the overhead of managing the installations yourself.
- Log into your Taskless Cloud dashboard
- Navigate to your Packs menu
- Browse available packs in the “Instrumentation” section
- Enable desired packs with a single click
Additional Packs via CLI
Section titled “Additional Packs via CLI”Need packs beyond what’s available in Taskless Cloud? You can still install additional open-source packs using the CLI:
pnpx @taskless/pack install <pack-url>
For detailed instructions on CLI pack installation, see our CLI Getting Started guide.
Start Your Application
Section titled “Start Your Application”Once you have the loader configured, you can start your application with Taskless Cloud instrumentation:
# Set your Taskless Cloud credentialsexport TASKLESS_API_KEY="your-api-key"
# Start your application
npm start
{ "scripts": { "start": "node --import=@taskless/loader ./src/index.js" }}