Getting Started
Connect the SDK
Install the Argus SDK and start sending metrics.
Create an API Key
- Navigate to Settings > API Keys in the dashboard
- Click Create API Key
- Give your key a descriptive name (e.g., "production-web-server")
- Copy the key — it's only shown once
Your API key is used to authenticate metric ingestion from your servers.
Install the SDK
Python
pip install argus-sdkfrom argus import ArgusClient
client = ArgusClient(api_key="your-api-key")
# The SDK automatically collects system metrics
client.start()Node.js
npm install @argus/sdkimport { ArgusClient } from '@argus/sdk';
const client = new ArgusClient({
apiKey: 'your-api-key'
});
// Start automatic metric collection
client.start();Verify Connection
Once the SDK is running, metrics should appear in your dashboard within 30 seconds. Navigate to the Dashboard to confirm data is flowing.