New Relic Instant Observability Scraper avatar

New Relic Instant Observability Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
New Relic Instant Observability Scraper

New Relic Instant Observability Scraper

Scrape New Relic's Instant Observability catalog of 785+ quickstarts/integrations. Search by keyword, filter by category, or fetch specific quickstarts by slug. Returns id, slug, title, description, categories, authors, dashboards, alerts, docs, and more.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

13 days ago

Last modified

Share

Extract data from the New Relic Instant Observability (I/O) catalog — 785+ quickstarts, integrations, and dashboards for monitoring your infrastructure, applications, and services.

What does this scraper do?

This actor fetches metadata from New Relic's public quickstarts repository on GitHub. Each quickstart record includes its title, description, summary, authors, keywords, categories, dashboard count, alert policy count, documentation links, and icon URL — all without requiring any API key or authentication.

Input

FieldTypeDescription
modeselectRequired. search (default) or getBySlug
querystringKeyword to filter by (mode=search). Matches title, description, keywords, slug
categoryselectCategory filter: alerts, apm, cloud, infrastructure, kubernetes, etc.
levelselectQuickstart level: New Relic, Verified, Community
slugsarrayList of quickstart slugs to fetch (mode=getBySlug)
maxItemsintegerMax records to emit (1–10000, default 100)

Example: Search for AWS integrations

{
"mode": "search",
"query": "aws",
"maxItems": 50
}

Example: Get specific quickstarts by slug

{
"mode": "getBySlug",
"slugs": ["docker", "amazon-bedrock", "active-directory"],
"maxItems": 10
}

Example: Browse Kubernetes quickstarts (Verified)

{
"mode": "search",
"query": "kubernetes",
"level": "Verified",
"maxItems": 20
}

Output

Each record contains:

FieldTypeDescription
idstringUnique quickstart UUID
slugstringURL-friendly identifier (e.g. active-directory)
titlestringDisplay name of the quickstart
levelstringVerification level: New Relic, Verified, or Community
descriptionstringFull description (Markdown)
summarystringShort one-liner summary
authorsarrayList of author names
keywordsarrayTags and keywords associated with this quickstart
dataSourceIdsarrayIDs of the data sources used
dashboardsarrayDashboard names included
dashboardCountintegerNumber of dashboards
alertPoliciesarrayAlert policy names included
alertPolicyCountintegerNumber of alert policies
documentationarrayDocumentation links with name, url, and description
iconUrlstringFull URL to the quickstart's icon image
sourceUrlstringGitHub URL to the quickstart folder
recordTypestringAlways quickstart
scrapedAtstringUTC ISO 8601 timestamp of when the record was scraped

Sample output

{
"id": "ba8030a4-7351-4798-ae36-d74d08f39e4e",
"slug": "docker",
"title": "Docker",
"level": "New Relic",
"description": "Our Docker monitoring integration automatically collects metrics...",
"summary": "Monitoring Docker is critical to get instant performance metrics...",
"authors": ["New Relic"],
"keywords": ["containers"],
"dataSourceIds": ["docker"],
"documentation": [
{
"name": "Docker installation docs",
"url": "https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/data-instrumentation/docker-instrumentation-infrastructure"
}
],
"iconUrl": "https://raw.githubusercontent.com/newrelic/newrelic-quickstarts/main/quickstarts/docker/logo.svg",
"sourceUrl": "https://github.com/newrelic/newrelic-quickstarts/tree/main/quickstarts/docker",
"recordType": "quickstart",
"scrapedAt": "2026-05-30T12:00:00+00:00"
}

FAQ

Does this require an API key? No. The New Relic quickstarts catalog is public on GitHub. No New Relic account or API key is needed.

How many quickstarts are available? As of May 2026, there are 785+ quickstarts covering AWS, Azure, GCP, Kubernetes, databases, APM agents, security tools, and more.

What's the difference between modes?

  • search: scans all 785+ quickstarts and applies your keyword/category/level filters. Best for discovery.
  • getBySlug: fetches exact quickstarts when you know their slugs. Best for targeted lookups.

What is a "quickstart slug"? The slug is the folder name in the GitHub repo. For example, docker, active-directory, amazon-bedrock. You can find slugs by browsing github.com/newrelic/newrelic-quickstarts/tree/main/quickstarts.

Why are some records missing fields like dashboardCount? Not all quickstarts include dashboards or alerts. Fields are only emitted when data is present (omit-empty policy).

Is this rate-limited? The actor uses the public GitHub API (unauthenticated, 60 requests/hour) for the slug list, then fetches raw YAML files directly from raw.githubusercontent.com with a 50ms delay between requests.

Data Source

All data comes from the public newrelic/newrelic-quickstarts GitHub repository, which is licensed under Apache 2.0.