Socket
Book a DemoInstallSign in
Socket

@itsyndicate/backstage-plugin-aws-health-dashboard

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@itsyndicate/backstage-plugin-aws-health-dashboard

## Description The AWS Health plugin provides real-time insights into AWS Health events, including ongoing issues, scheduled changes, and notifications. It enables users to monitor and manage AWS health events by displaying detailed information for each e

latest
Source
npmnpm
Version
0.1.65
Version published
Maintainers
2
Created
Source

AWS Health

Description

The AWS Health plugin provides real-time insights into AWS Health events, including ongoing issues, scheduled changes, and notifications. It enables users to monitor and manage AWS health events by displaying detailed information for each event.

Functionality

  • Fetches AWS health events across different categories: issues, scheduled changes, notifications, and event logs.
  • Displays events with options to filter by type and view event details.
  • Links directly to the AWS Health Console for more information on specific events.
  • Allows customization of monitored AWS regions through the configuration file.

Installation

From your Backstage directory:

  • Add the plugin:

    yarn --cwd packages/app add @internal/backstage-plugin-aws-health
    
  • Add the AWS Health component to packages/app/src/components/catalog/EntityPage.tsx:

    import { AwsHealthComponent } from '@internal/backstage-plugin-aws-health';
    // ...
    const entityPage = (
      <EntityLayout>
        <EntityLayout.Route path="/" title="Overview">
          <Grid container spacing={3}>
            ...
            <Grid item xs={12} md={6}>
              <AwsHealthComponent />
            </Grid>
          </Grid>
        </EntityLayout.Route>
      </EntityLayout>
    );
    

Keywords

support:tech-preview

FAQs

Package last updated on 15 Nov 2024

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