zero-to-elastic
Complete onboarding from no infrastructure to a working Elasticsearch-backed app
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Complete onboarding from no infrastructure to a working Elasticsearch-backed app
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Debug and analyze LLM eval runs — view traces, compare runs, investigate failures, track costs. Use when debugging @kbn/evals failures, comparing eval runs, or analyzing LLM performance.
Start your security session with a personalized briefing — attacks, alerts, cases, rules, threat intel. Use as the first thing when starting security work.
Guide users from zero to a working Elastic cluster — Cloud or on-prem, connection config, first queries, and next steps.
Interactive guide for creating an APM service overview dashboard — discovers service data, presents metrics, and creates a tailored dashboard.
Interactive guide for creating SLOs from discovered APM and metric data — identifies candidates, lets user configure targets, and creates SLOs.
Create, configure, and manage Elasticsearch indices — mappings, settings, templates, data streams, and lifecycle policies.
| name | zero-to-elastic |
| description | Complete onboarding from no infrastructure to a working Elasticsearch-backed app |
Use when the user has no Elastic infrastructure and wants to go from zero to a working app.
If Cloud:
create_cloud_project (with ELASTIC_CLOUD_API_KEY set) with name and region_id (e.g. us-east-1); or guide them to sign up at cloud.elastic.co and create a deployment.get_connection_config to generate the client snippet for their language (node, python, java, go, dotnet).create_project_api_key if they need a scoped key (Serverless projects only).create_project_api_key does NOT work. Instead:
elastic password via Cloud API: POST https://api.elastic-cloud.com/api/v1/deployments/{id}/elasticsearch/{ref_id}/_reset-password with the ELASTIC_CLOUD_API_KEY header.GET https://api.elastic-cloud.com/api/v1/deployments (look for the deployment by name or ES cluster ID in the URL alias).ref_id: "main-elasticsearch" for the ES resource ref.If on-prem:
get_deployment_guide with preference: "on_prem" to return the step-by-step guide.examples/on-prem-docker/: run docker compose up -d to start Elasticsearch, Kibana, and APM server; optionally add Fleet server and Elastic Agent (see that README).get_connection_config with url: "http://localhost:9200" and their password or API key after the stack is up.create_index; index sample data with index_document or bulk_index.search or esql_query to validate connectivity.setup_apm with the appropriate server URL (Cloud APM URL or on-prem http://localhost:8200)./_otlp/v1/{metrics,traces,logs} — no APM Server or OTel collector required.application/x-protobuf. Use proto-based OTel exporters, not JSON/HTTP variants.ES_URL points to a remote/Cloud host — otherwise unrelated local services intercept traffic.cluster_health is green; run list_indices and a simple search.