Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Configure the Lumina SDK for your environment
import { initLumina } from '@uselumina/sdk'; const lumina = initLumina({ endpoint: 'http://localhost:9411/v1/traces', service_name: 'my-service', });
endpoint
service_name
enabled
resource
const lumina = initLumina({ endpoint: process.env.LUMINA_ENDPOINT, service_name: process.env.SERVICE_NAME, enabled: process.env.NODE_ENV === 'production', });
const lumina = initLumina({ endpoint: 'http://localhost:9411/v1/traces', service_name: 'my-service', resource: { environment: 'production', version: '1.2.0', region: 'us-east-1', }, });