exa-observability

Featured

Set up monitoring, metrics, and alerting for Exa search integrations. Use when implementing monitoring for Exa operations, building dashboards, or configuring alerting for search quality and latency. Trigger with phrases like "exa monitoring", "exa metrics", "exa observability", "monitor exa", "exa alerts", "exa dashboard".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Exa Observability ## Overview Monitor Exa search API performance, result quality, and cost efficiency. Key metrics: search latency by type (neural ~500-2000ms, keyword ~200-500ms), result count per query, cache hit rates, error rates by status code, and daily search volume for budget tracking. ## Prerequisites - Exa API integration in production - Metrics backend (Prometheus, Datadog, or OpenTelemetry) - Alerting system (PagerDuty, Slack, or equivalent) ## Instructions ### Step 1: Instrument the Exa Client ```typescript import Exa from "exa-js"; const exa = new Exa(process.env.EXA_API_KEY); // Generic metrics emitter (replace with your metrics library) function emitMetric(name: string, value: number, tags: Record<string, string>) { // Prometheus: histogram/counter.observe(value, tags) // Datadog: dogstatsd.histogram(name, value, tags) // OpenTelemetry: meter.createHistogram(name).record(value, tags) console.log(`[metric] ${name}=${value}`, tags); } async function trackedSearch(query: string, options: any = {}) { const start = performance.now(); const type = options.type || "auto"; const hasContents = options.text || options.highlights || options.summary; try { const method = hasContents ? "searchAndContents" : "search"; const results = hasContents ? await exa.searchAndContents(query, options) : await exa.search(query, options); const duration = performance.now() - start; emitMetric("exa.search.duration_ms", duration, { t...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

exa-data-handling

Implement Exa search result processing, content extraction, caching, and RAG context management. Use when handling search results, implementing caching, building citation pipelines, or managing content payloads for LLM context windows. Trigger with phrases like "exa data", "exa results processing", "exa cache", "exa RAG context", "exa content extraction".

2,266 Updated today
jeremylongshore
AI & Automation Featured

exa-hello-world

Create a minimal working Exa search example with real results. Use when starting a new Exa integration, testing your setup, or learning basic search, searchAndContents, and findSimilar patterns. Trigger with phrases like "exa hello world", "exa example", "exa quick start", "simple exa search", "first exa query".

2,266 Updated today
jeremylongshore
AI & Automation Featured

exa-cost-tuning

Optimize Exa costs through search type selection, caching, and usage monitoring. Use when analyzing Exa billing, reducing API costs, or implementing budget controls and usage alerts. Trigger with phrases like "exa cost", "exa billing", "reduce exa costs", "exa pricing", "exa expensive", "exa budget".

2,266 Updated today
jeremylongshore
AI & Automation Featured

exa-performance-tuning

Optimize Exa API performance with search type selection, caching, and parallelization. Use when experiencing slow responses, implementing caching strategies, or optimizing request throughput for Exa integrations. Trigger with phrases like "exa performance", "optimize exa", "exa latency", "exa caching", "exa slow", "exa fast".

2,266 Updated today
jeremylongshore
AI & Automation Featured

exa-architecture-variants

Choose and implement Exa architecture patterns at different scales: direct search, cached search, and RAG pipeline. Use when designing Exa integrations, choosing between simple search and full RAG, or planning architecture for different traffic volumes. Trigger with phrases like "exa architecture", "exa blueprint", "how to structure exa", "exa RAG design", "exa at scale".

2,266 Updated today
jeremylongshore