Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
elastic avatar

Observability Edot Dotnet Instrument

  • 2.1k installs
  • 546 repo stars
  • Updated July 22, 2026
  • elastic/agent-skills

Configures Elastic Cloud authentication and environment defaults. Use when setting up EC_API_KEY, configuring Cloud API access, or when another cloud skill requires credentials.

About

The observability edot dotnet instrument skill Configures Elastic Cloud authentication and environment defaults. Use when setting up EC_API_KEY, configuring Cloud API access, or when another cloud skill requires credentials. Documentation covers workflows, commands, and guardrails agents should follow when users invoke this capability. Key documented areas include [ ] Step 1: Verify API key; [ ] Step 2: Set defaults; [ ] Step 3: Validate connection; Generate a key at [Elastic Cloud API keys](https://cloud.elastic.co/account/keys). Only **Organization owners** can. Reference commands include Check whether `EC_API_KEY` is already set:; appear in conversation history.. Use when developers or agents need structured guidance for observability edot dotnet instrument tasks with evidence grounded in the bundled SKILL.md rather than generic advice. [ ] Step 1: Verify API key [ ] Step 2: Set defaults [ ] Step 3: Validate connection Generate a key at [Elastic Cloud API keys](https://cloud.elastic.co/account/keys). Only **Organization owners** can When creating this key, include **Project Admin** privileges or higher (Org Owner) so it can create and manage Create a `.env` file in

  • [ ] Step 1: Verify API key
  • [ ] Step 2: Set defaults
  • [ ] Step 3: Validate connection
  • Generate a key at [Elastic Cloud API keys](https://cloud.elastic.co/account/keys). Only **Organization owners** can
  • When creating this key, include **Project Admin** privileges or higher (Org Owner) so it can create and manage

Observability Edot Dotnet Instrument by the numbers

  • 2,092 all-time installs (skills.sh)
  • +158 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #187 of 1,039 Cloud & Infrastructure skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

observability-edot-dotnet-instrument capabilities & compatibility

Capabilities
[ ] step 1: verify api key · [ ] step 2: set defaults · [ ] step 3: validate connection · generate a key at [elastic cloud api keys](https · when creating this key, include **project admin*
npx skills add https://github.com/elastic/agent-skills --skill observability-edot-dotnet-instrument

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2.1k
repo stars546
Security audit3 / 3 scanners passed
Last updatedJuly 22, 2026
Repositoryelastic/agent-skills

How do I handle observability edot dotnet instrument tasks with agent guidance?

Configures Elastic Cloud authentication and environment defaults. Use when setting up EC_API_KEY, configuring Cloud API access, or when another cloud skill requires credentials.

Who is it for?

Teams needing documented observability edot dotnet instrument workflows.

Skip if: Teams already running a different APM agent or needing manual span instrumentation guides instead of EDOT auto-instrumentation.

When should I use this skill?

Configures Elastic Cloud authentication and environment defaults. Use when setting up EC_API_KEY, configuring Cloud API access, or when another cloud skill requires credentials.

What you get

Structured workflow from observability edot dotnet instrument documentation applied to the user request.

  • EDOT SDK configuration
  • telemetry export setup

By the numbers

  • Skill metadata version 0.1.0 from elastic/agent-skills

Files

SKILL.mdMarkdownGitHub ↗

Cloud Environment Setup

Configure Elastic Cloud authentication and preferences. All other cloud/* skills depend on this setup.

Workflow

Setup Progress:
- [ ] Step 1: Verify API key
- [ ] Step 2: Set defaults
- [ ] Step 3: Validate connection

Step 1: Verify API key

Check whether EC_API_KEY is already set:

echo "${EC_API_KEY:?Not set}"

If not set, instruct the user to set it. Never ask the user to paste an API key into the chat — secrets must not appear in conversation history.

If the user indicates they do not have an Elastic Cloud account yet, propose starting a free trial at Elastic Cloud free trial. The trial provides 14 days of full access to Elastic Cloud Serverless with no credit card required. Once the user has registered and logged in, proceed with API key generation below.

Direct the user to:

1. Generate a key at Elastic Cloud API keys. Only Organization owners can create and manage Cloud API keys. 1. When creating this key, include Project Admin privileges or higher (Org Owner) so it can create and manage serverless projects. 1. Create a .env file in the project root (recommended — works in sandboxed agent shells):

EC_API_KEY=your-api-key

All cloud/* scripts auto-load .env from the working directory — no manual sourcing needed.

Alternatively, export directly in the terminal:

export EC_API_KEY="your-api-key"

Terminal exports might not be visible to sandboxed agents running in a separate shell session. Prefer the .env file when working with an agent.

Remind the user that storing secrets in local files is acceptable for development, but for production or shared environments, use a centralized secrets manager (for example, HashiCorp Vault, AWS Secrets Manager, 1Password CLI) to avoid secrets sprawl.

Step 2: Set defaults

Export the base URL and default region:

export EC_BASE_URL="https://api.elastic-cloud.com"
export EC_REGION="gcp-us-central1"

Ask the user if they want a different region. To list available regions:

curl -s -H "Authorization: ApiKey ${EC_API_KEY}" \
  "${EC_BASE_URL}/api/v1/serverless/regions" | python3 -m json.tool

Step 3: Validate connection

Confirm the API key works by calling the regions endpoint:

curl -sf -H "Authorization: ApiKey ${EC_API_KEY}" \
  "${EC_BASE_URL}/api/v1/serverless/regions" > /dev/null && echo "Authenticated." || echo "Authentication failed."

If validation fails, check:

  • The API key is valid and not expired
  • Network connectivity to api.elastic-cloud.com

Examples

First-time setup

User: set up my cloud environment
Agent: Check if EC_API_KEY is set in your terminal. If not, generate a key at
       https://cloud.elastic.co/account/keys and run:
       export EC_API_KEY="your-key"
       Then confirm and I'll validate the connection.

Setup with custom region

User: set up cloud with eu region
Agent: [runs setup, sets EC_REGION to user's preferred EU region]

Guidelines

  • Never receive, echo, or log API keys, passwords, or any credentials in the chat. Instruct the user to manage secrets

in their terminal or using files directly.

  • Always validate the connection after setting the key.
  • Default region is gcp-us-central1 — only change if the user requests a different region.
  • This skill is a prerequisite. Other cloud skills should refer here when EC_API_KEY is missing.

Environment variables

VariableRequiredDescription
EC_API_KEYYesElastic Cloud API key
EC_BASE_URLNoCloud API base URL (default: https://api.elastic-cloud.com)
EC_REGIONNoDefault region (default: gcp-us-central1)

Troubleshooting

ProblemFix
401 UnauthorizedAPI key is invalid or expired — generate a new one
connection refusedCheck network access to api.elastic-cloud.com

Related skills

How it compares

Choose observability-edot-dotnet-instrument for Elastic-native OTel auto-instrumentation on greenfield .NET services without APM.

FAQ

What does observability edot dotnet instrument do?

Configures Elastic Cloud authentication and environment defaults. Use when setting up EC_API_KEY, configuring Cloud API access, or when another cloud skill requires credentials.

When should I invoke observability edot dotnet instrument?

Configures Elastic Cloud authentication and environment defaults. Use when setting up EC_API_KEY, configuring Cloud API access, or when another cloud skill requires credentials.

What are key capabilities?

[ ] Step 1: Verify API key

Is Observability Edot Dotnet Instrument safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.