Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@harnessio/backstage-plugin-harness-srm

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@harnessio/backstage-plugin-harness-srm

Website: [https://harness.io/](https://harness.io/)

  • 0.2.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
269
increased by25.12%
Maintainers
3
Weekly downloads
 
Created
Source

Harness Service Reliability Management Plugin

Website: https://harness.io/

Welcome to the Harness Service Reliability Management plugin for Backstage!

Screenshots

Setup steps

  1. Open terminal and navigate to the root of your Backstage app. Then run
yarn add --cwd packages/app @harnessio/backstage-plugin-srm

yarn install

If you are looking to get started with Backstage, check out backstage.io/docs.

For testing purposes, you can also clone this repository to try out the plugin. It contains an example Backstage app setup which is pre-installed with Harness plugins. However, you must create a new Backstage app if you are looking to get started with Backstage.

  1. Configure proxy for harness in your app-config.yaml under the proxy config. Add your Harness Personal Access Token or Service Account Token for x-api-key. See the Harness docs for generating an API Key.
# In app-config.yaml

proxy:
  # ... existing proxy settings
  '/harness':
    target: 'https://app.harness.io/'
    headers:
      'x-api-key': '<YOUR PAT/SAT>'
# ...

Notes:

  • Plugin uses token configured here to make Harness API calls. Make sure this token has the necessary permissions

  • Set the value of target to your on-prem URL if you are using the Harness on-prem offering

  1. Inside your Backstage's EntityPage.tsx, update the srmContent component to render <EntityHarnessSrmContent /> whenever the service is using Harness SRM. Something like this -
// In packages/app/src/components/catalog/EntityPage.tsx

import {
  EntityHarnessSrmContent,
  isHarnessSRMAvailable
} from '@harnessio/backstage-plugin-harness-srm';

...

const srmContent = (
  <EntitySwitch>
    <EntitySwitch.Case if={isHarnessSRMAvailable}>
      <EntityHarnessSrmContent />
    </EntitySwitch.Case>

    <EntitySwitch.Case>
      <EmptyState
        title="No SRM available for this entity"
        missing="info"
        description="You need to add an annotation to your component if you want to enable SRM for it. You can read more about annotations in Backstage by clicking the button below."
        action={
          <Button
            variant="contained"
            color="primary"
            href="https://backstage.io/docs/features/software-catalog/well-known-annotations"
          >
            Read more
          </Button>
        }
      />
    </EntitySwitch.Case>
  </EntitySwitch>
);

...

const serviceEntityPage = (
  <EntityLayout>
    <EntityLayout.Route path="/srm" title="Service Reliability">
      {srmContent}
    </EntityLayout.Route>
  </EntityLayout>
);

...

  1. Add required harness specific annotations to your software component's respective catalog-info.yaml file.

Here is an example: catalog-info.yaml

apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
  # ...
  annotations:
    harness.io/services: |
      labelA: <harness_service_url>

spec:
  type: service
  # ...

Other configurations

  • (Optional) Harness URL

If you have a separate Harness hosted URL other than https://app.harness.io, you can configure baseUrl for harness in app-config.yaml This step is optional. The default value of harness.baseUrl is https://app.harness.io/

# In app-config.yaml

harness:
  baseUrl: https://app.harness.io/

Features

  • Connect a Backstage service with a Harness project and view the Monitored Services associated with that service.
  • See details about Monitored Service - the changes, health score, and the SLOs asscoiated with it.
  • See details about the SLOs like their status, burn rate, target, error budget remaining for a given Monitored Service on clicking the dropdown.

FAQs

Package last updated on 17 Nov 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc