跳至主要内容
小龙虾小龙虾AI
🤖

Newrelic Cli Skills

Monitor, query, and manage New Relic observability data via the newrelic CLI. Covers NRQL queries, APM performance triage, deployment markers, alert manageme...

下载106
星标1
版本1.0.1
开发工具
安全通过
⚙️脚本

技能说明


name: newrelic-cli-skills version: 1.0.1 description: > Monitor, query, and manage New Relic observability data via the newrelic CLI. Covers NRQL queries, APM performance triage, deployment markers, alert management, infrastructure monitoring, and agent diagnostics. Use when user asks about application performance, error rates, slow transactions, deployment tracking, or New Relic configuration. metadata: openclaw: purpose: > Read-mostly observability skill. Reads APM metrics, NRQL query results, alert policies/conditions, and infrastructure host data from the New Relic API. Write operations are limited to: creating deployment markers (apm sub-skill) and muting/unmuting alert conditions (alerts sub-skill). No data is deleted. Scripts execute newrelic CLI commands only; no shell eval or dynamic execution. requires: env: - NEW_RELIC_API_KEY - NEW_RELIC_ACCOUNT_ID binaries: - newrelic notes: | NEW_RELIC_API_KEY must be a User Key (starts with NRAK-). NEW_RELIC_ACCOUNT_ID is the numeric account ID from the NR UI. See README.md for CLI installation instructions. Use an API key scoped to the minimum required accounts. tags:

  • newrelic
  • observability
  • apm
  • monitoring
  • performance
  • nrql

New Relic CLI Skills

Quick Decision Tree

Performance issue reported?apm/SKILL.md Need to query data with NRQL?nrql/SKILL.md Recording a deployment?deployments/SKILL.md Alert management?alerts/SKILL.md Infrastructure/host issues?infrastructure/SKILL.md Agent not reporting?diagnostics/SKILL.md


Setup & Auth

# Install
curl -Ls https://download.newrelic.com/install/newrelic-cli/scripts/install.sh | bash

# Configure profile
newrelic profile add \
  --profile default \
  --apiKey $NEW_RELIC_API_KEY \
  --accountId $NEW_RELIC_ACCOUNT_ID \
  --region US   # or EU

newrelic profile default --profile default

# Verify
newrelic profile list

Common One-Liners

# Search for an entity by name
newrelic entity search --name "my-app"

# Run a NRQL query
newrelic nrql query --accountId $NEW_RELIC_ACCOUNT_ID \
  --query "SELECT average(duration) FROM Transaction WHERE appName='my-app' SINCE 1 hour ago"

# Record a deployment
newrelic apm deployment create \
  --applicationId <APP_ID> \
  --revision "v1.2.3" \
  --description "Feature: user auth"

# Run diagnostics
newrelic diagnose run

Entity Reference

Find entity GUIDs (needed for API calls and deployment markers):

# List all APM apps
newrelic entity search --name "" --type APPLICATION --domain APM

# Get specific entity details
newrelic entity get --guid <GUID>

# List all hosts
newrelic entity search --name "" --type HOST

Environment Variables

VariableDescription
NEW_RELIC_API_KEYUser key (NRAK-...)
NEW_RELIC_ACCOUNT_IDNumeric account ID
NEW_RELIC_REGIONUS or EU

Sub-Skills

Sub-skillWhen to use
apm/Performance triage, slow transactions, error analysis
nrql/Custom queries, dashboards, ad-hoc data exploration
deployments/Mark releases, correlate deploys with performance
alerts/Alert policies, conditions, notification channels
infrastructure/Host metrics, CPU/memory, process monitoring
diagnostics/Agent health, config validation, connectivity

Scripts

ScriptPurpose
scripts/check-performance.shQuick health check across all apps
scripts/deployment-marker.shRecord a deployment event
scripts/top-slow-transactions.shFind the 10 slowest transactions
scripts/error-report.shRecent errors with stack traces

References

如何使用「Newrelic Cli Skills」?

  1. 打开小龙虾AI(Web 或 iOS App)
  2. 点击上方「立即使用」按钮,或在对话框中输入任务描述
  3. 小龙虾AI 会自动匹配并调用「Newrelic Cli Skills」技能完成任务
  4. 结果即时呈现,支持继续对话优化

相关技能