{"id":42957366,"url":"https://github.com/parseablehq/datasources","last_synced_at":"2026-01-30T22:28:30.466Z","repository":{"id":332759970,"uuid":"1132932847","full_name":"parseablehq/datasources","owner":"parseablehq","description":"This is the repo to serve as the central source for all datasources supported in parseable","archived":false,"fork":false,"pushed_at":"2026-01-15T11:28:20.000Z","size":462,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-15T16:24:24.961Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/parseablehq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["parseable","operator"]}},"created_at":"2026-01-12T16:44:55.000Z","updated_at":"2026-01-15T11:28:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/parseablehq/datasources","commit_stats":null,"previous_names":["parseablehq/datasources"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/parseablehq/datasources","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parseablehq%2Fdatasources","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parseablehq%2Fdatasources/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parseablehq%2Fdatasources/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parseablehq%2Fdatasources/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/parseablehq","download_url":"https://codeload.github.com/parseablehq/datasources/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parseablehq%2Fdatasources/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28921066,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T20:25:28.696Z","status":"ssl_error","status_checked_at":"2026-01-30T20:25:13.426Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-30T22:28:29.793Z","updated_at":"2026-01-30T22:28:30.461Z","avatar_url":"https://github.com/parseablehq.png","language":"JavaScript","funding_links":["https://github.com/sponsors/parseable","https://github.com/sponsors/operator"],"categories":[],"sub_categories":[],"readme":"# Parseable Integrations Catalog\n\nSingle source of truth for Parseable integrations metadata, shared between:\n\n- Prism (product UI)\n- Docs (docs site)\n\nThis repository is a **data package**, not an application.\n\n---\n\n## Source of truth\n\n**Only the following are edited manually:**\n\n- `catalog/integrations/*.json`  \n  One integration per file. This is the only editable source of integration data.\n\n- `catalog/taxonomies/*`  \n  Controlled vocabularies for resources and telemetry types.\n\n- `assets/*`  \n  Integration logos. Each integration must reference a logo via `assets.logo`.\n\nEverything else in this repo is **generated**.\n\n---\n\n## Generated files (do not edit manually)\n\nGenerated by running `pnpm build`:\n\n- `catalog/groups.json`  \n  Grouped view of integrations by resource.\n\n- `dist/integrations.json`  \n  Flat, UI-ready list of integrations.\n\n- `dist/integrations.min.json`\n\n- `dist/integrations-index.json`  \n  Map keyed by integration id.\n\n- `dist/resources.json`  \n  Resource-wise sections for UI rendering.\n\n- `dist/resources-index.json`\n\n- `dist/search-index.json`  \n  Lightweight search tokens.\n\nIf any of these files change, they **must be committed**.\n\n---\n\n## Build \u0026 validation\n\nRun from the repository root:\n\n```bash\npnpm build\n```\n\nThis will:\n\n1. Validate all integrations and assets\n2. Generate catalog/groups.json\n3. Generate all dist/\\* artifacts\n\nA pre-commit hook and CI workflow enforce this automatically.\n\n## Usage as a submodule\n\nThis repository is consumed as a **git submodule** by downstream projects.\n\n### Prism (product UI)\n\nPrism consumes:\n\n- `dist/resources.json` for sectioned UI rendering\n- `dist/integrations.json` for search and filters\n- `assets/` copied into `public/` at build time for logos\n\nPrism does **not** run any build or validation scripts from this repository.\n\n### Docs (docs site)\n\nDocs follow the same consumption model as Prism:\n\n- Read structured data from `dist/*`\n- Render logos from copied `assets/*`\n\nDocs never modify or regenerate catalog data.\n\n## Rules\n\n- ❌ Do not edit `catalog/groups.json`\n- ❌ Do not edit anything under `dist/`\n- ❌ Do not add integrations outside `catalog/integrations/`\n- ❌ Do not reference assets outside the `assets/` directory\n- ✅ Edit only `catalog/integrations/*.json`\n- ✅ Always run `pnpm build` before committing\n- ✅ Commit generated files when they change\n\n## Why this design\n\n- One file per integration scales cleanly and avoids merge conflicts\n- A strict single source of truth prevents data drift\n- UI-specific data shapes are generated, not hand-maintained\n- Downstream apps consume static JSON only, with zero build logic\n- Assets are versioned alongside metadata for consistency\n- Validation and generation are enforced via pre-commit hooks and CI\n\n## Integration template\n\nUse the following template when adding a new integration under\n`catalog/integrations/`.\n\n```json\n{\n  \"id\": \"example-integration\",\n  \"name\": \"Example Integration\",\n  \"resource\": \"observability-agents\",\n  \"telemetry_types\": [\"logs\"],\n  \"description\": \"Short description of the integration.\",\n  \"links\": {\n    \"docs\": \"https://parseable.com/docs/ingest/example\"\n  },\n  \"assets\": {\n    \"logo\": \"assets/logos/example.svg\"\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparseablehq%2Fdatasources","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparseablehq%2Fdatasources","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparseablehq%2Fdatasources/lists"}