New Relic Instant Observability Scraper
Pricing
from $3.00 / 1,000 results
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
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
13 days ago
Last modified
Categories
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
| Field | Type | Description |
|---|---|---|
mode | select | Required. search (default) or getBySlug |
query | string | Keyword to filter by (mode=search). Matches title, description, keywords, slug |
category | select | Category filter: alerts, apm, cloud, infrastructure, kubernetes, etc. |
level | select | Quickstart level: New Relic, Verified, Community |
slugs | array | List of quickstart slugs to fetch (mode=getBySlug) |
maxItems | integer | Max 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:
| Field | Type | Description |
|---|---|---|
id | string | Unique quickstart UUID |
slug | string | URL-friendly identifier (e.g. active-directory) |
title | string | Display name of the quickstart |
level | string | Verification level: New Relic, Verified, or Community |
description | string | Full description (Markdown) |
summary | string | Short one-liner summary |
authors | array | List of author names |
keywords | array | Tags and keywords associated with this quickstart |
dataSourceIds | array | IDs of the data sources used |
dashboards | array | Dashboard names included |
dashboardCount | integer | Number of dashboards |
alertPolicies | array | Alert policy names included |
alertPolicyCount | integer | Number of alert policies |
documentation | array | Documentation links with name, url, and description |
iconUrl | string | Full URL to the quickstart's icon image |
sourceUrl | string | GitHub URL to the quickstart folder |
recordType | string | Always quickstart |
scrapedAt | string | UTC 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.