explore-dataset

द्वारा axiomhq

एक्सिओम डेटासेट का अन्वेषण करें ताकि इसकी स्कीमा, फ़ील्ड, वॉल्यूम और पैटर्न को समझ सकें। नए डेटासेट की खोज करते समय, डेटा संरचना की जांच करते समय, या…

npx skills add https://github.com/axiomhq/cli --skill explore-dataset

Dataset Exploration

Systematically explore an Axiom dataset to understand its structure, content, and potential use cases.

Arguments

When invoked with a dataset name (e.g., /explore-dataset logs), the name is available as $ARGUMENTS.

Exploration Protocol

1. List Available Datasets

If no dataset specified, list what's available:

axiom dataset list -f json

2. Schema Discovery

Always start here. Discover actual field names and types:

axiom query "['<dataset>'] | getschema" --start-time -1h

Identify:

  • Field names and types
  • Dotted fields requiring bracket notation
  • Timestamp fields
  • Key dimensions (service, status, level)

OTel trace data: If schema contains trace_id, span_id, attributes.*, note that:

  • Service fields are promoted: use ['service.name'] not ['resource.service.name']
  • Custom attributes: ['attributes.custom']['field'] with tostring() for aggregations
  • See axiom-apl skill's OTel reference for field mappings

3. Sample Data

Examine actual values:

axiom query "['<dataset>'] | limit 10" --start-time -1h -f json

Look for:

  • Data structure and relationships
  • Field value formats
  • Data quality issues

4. Volume Analysis

Understand data volume patterns:

axiom query "['<dataset>'] | summarize count() by bin(_time, 1h) | sort by _time asc" --start-time -24h

Analyze:

  • Event volume over time
  • Data freshness
  • Collection gaps

5. Categorical Field Analysis

For each key categorical field (status, level, service):

axiom query "['<dataset>'] | summarize count() by <field> | top 20 by count_" --start-time -1h

Identify:

  • Value distributions
  • Cardinality
  • Key dimensions for filtering

6. Numerical Field Statistics

For numeric fields (duration, bytes, count):

axiom query "['<dataset>'] | summarize count(), min(<field>), max(<field>), avg(<field>), percentiles(<field>, 50, 95, 99)" --start-time -1h

7. Error Pattern Detection

Search for error indicators:

axiom query "search in (['<dataset>']) 'error' or 'fail' or 'exception' | limit 20" --start-time -1h

Output Format

Provide a summary including:

## Dataset Summary: <name>

### Purpose
<What system generated this data, what it represents>

### Key Fields
| Field | Type | Description |
|-------|------|-------------|
| ... | ... | ... |

### Volume
- Events per hour: ~X
- Data freshness: last event at X

### Key Dimensions
- `status`: 200, 400, 500, ...
- `service.name`: api, web, worker, ...

### Recommended Queries
<Common queries for this dataset>

### Monitoring Opportunities
<What could be alerted on>

When NOT to Use

  • Known datasets: If you already understand the schema, skip exploration and query directly
  • Quick field check: Use getschema directly for single field lookups
  • Production queries: Exploration uses expensive operations (search); extract patterns then optimize
  • Repeated analysis: Once explored, document findings and reuse—don't re-explore

APL Reference

For query syntax, invoke the axiom-apl skill which provides comprehensive documentation on operators, functions, and patterns.

axiomhq की और Skills

axiom-apl
axiomhq
APL क्वेरी भाषा संदर्भ Axiom के लिए। ऑपरेटर, फ़ंक्शन, पैटर्न और CLI उपयोग प्रदान करता है। विशेष Axiom कौशल द्वारा लिखते समय या... स्वचालित रूप से आहूत किया जाता है।
official
detect-anomalies
axiomhq
Axiom डेटासेट में सांख्यिकीय विश्लेषण का उपयोग करके विसंगतियों का पता लगाएं। असामान्य पैटर्न, वॉल्यूम स्पाइक्स, आउटलायर्स या नए त्रुटि प्रकारों की खोज करते समय उपयोग करें…
official
find-traces
axiomhq
Axiom से OpenTelemetry वितरित ट्रेस का विश्लेषण करें। ट्रेस आईडी की जांच करते समय, मानदंडों (त्रुटियाँ, विलंबता, सेवा) के आधार पर ट्रेस ढूंढते समय, या डीबगिंग करते समय उपयोग करें…
official
gilfoyle
axiomhq
वह SRE एजेंट जो वह करता है जो आप नहीं कर सकते। आपके ऑब्ज़र्वेबिलिटी स्टैक को क्वेरी करता है। मूल कारण ढूंढता है। घबराता नहीं है। अनुमान नहीं लगाता। आपकी भावनाओं की परवाह नहीं करता। उपयोग करें…
official
axiom-sre
axiomhq
इंसिडेंट और डीबगिंग के लिए विशेषज्ञ SRE अन्वेषक। परिकल्पना-संचालित पद्धति और व्यवस्थित ट्राइएज का उपयोग करता है। उपलब्ध होने पर Axiom ऑब्ज़र्वेबिलिटी को क्वेरी कर सकता है।…
official
building-dashboards
axiomhq
एक्सिओम डैशबोर्ड को API के माध्यम से डिज़ाइन और बनाता है। इसमें चार्ट प्रकार, APL और मेट्रिक्स/MPL क्वेरी पैटर्न, स्मार्टफ़िल्टर, लेआउट और कॉन्फ़िगरेशन विकल्प शामिल हैं। इसका उपयोग तब करें जब...
official
controlling-costs
axiomhq
Axiom क्वेरी पैटर्न का विश्लेषण करके अप्रयुक्त डेटा ढूंढता है, फिर लागत अनुकूलन के लिए डैशबोर्ड और मॉनिटर बनाता है। जब Axiom लागत कम करने, अप्रयुक्त डेटा खोजने के लिए कहा जाए तो इसका उपयोग करें…
official
query-metrics
axiomhq
Axiom MetricsDB के विरुद्ध स्क्रिप्ट के माध्यम से मेट्रिक्स क्वेरी चलाता है। उपलब्ध मेट्रिक्स, टैग और टैग मान खोजता है। जब मेट्रिक्स क्वेरी करने, मेट्रिक्स खोजने के लिए कहा जाए तो उपयोग करें…
official