Sign In

@parseable/backstage-plugin-datasets

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parseable/backstage-plugin-datasets

Backstage plugin for viewing and searching Parseable datasets and logs with support for both legacy and new frontend systems

latest
Source
npmnpm
Version
1.2.1
Version published
Weekly downloads
13
Maintainers
2
Weekly downloads
 
Created
Source

@parseable/backstage-plugin-datasets

A Backstage plugin for viewing and searching Parseable datasets and logs.

🎉 New Frontend System Support

This plugin now supports both the legacy Backstage system and the new frontend system! See MIGRATION.md for details.

Features

  • View all available Parseable datasets
  • Search and filter logs within datasets
  • Dynamic column generation based on log structure
  • Pagination and sorting support
  • Expandable view for long log entries
  • Real-time log fetching
  • Dual system support - works with both legacy and new Backstage frontend systems

Installation

Add the plugin to your Backstage app:

yarn add @parseable/backstage-plugin-datasets

Setup

Legacy System (Current)

1. Add the plugin to your app

In your packages/app/src/App.tsx:

import { ParseableDatasetsPage } from '@parseable/backstage-plugin-datasets';

// Add to your routes
<Route path="/parseable-datasets" element={<ParseableDatasetsPage />} />

New Frontend System (Optional)

If your app uses the new frontend system:

// In your app's features array
import parseablePlugin from '@parseable/backstage-plugin-datasets';

const app = createApp({
  features: [
    parseablePlugin,
    // ... other plugins
  ],
});

The plugin will automatically register its route at /parseable-datasets.

Note: See MIGRATION.md for complete migration instructions.

2. Add navigation

In your packages/app/src/components/Root/Root.tsx:

import StorageIcon from '@material-ui/icons/Storage';

// Add to your sidebar
<SidebarItem icon={StorageIcon} to="parseable-datasets" text="Parseable Datasets" />

3. Configure the API

The plugin connects to Parseable at https://demo.parseable.com by default. To configure a different endpoint, you can modify the base URL in the component or extend the API client.

Usage

  • Navigate to "Parseable Datasets" in your Backstage sidebar
  • Select a dataset from the dropdown
  • View and search through the logs
  • Click "See more" on truncated entries to view full content
  • Use the table's built-in search, sort, and pagination features

Development

# Install dependencies
yarn install

# Run in development
yarn start

# Build the plugin
yarn build

# Run tests
yarn test

API

The plugin provides the following API:

  • parseableApiRef - Reference to the Parseable API client
  • ParseableClient - API client implementation
    • getUserInfo(baseUrl) - Fetch user info and available datasets
    • getLogs(baseUrl, dataset, limit) - Fetch logs from a specific dataset

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the Apache-2.0 License.

Keywords

backstage

FAQs

Package last updated on 09 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts