Socket
Socket
Sign inDemoInstall

@oriflame/backstage-plugin-score-card

Package Overview
Dependencies
13
Maintainers
4
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @oriflame/backstage-plugin-score-card

Welcome to the score-card plugin! Main idea behind it comes from a need to somehow visualize maturity of our services and to establish a process how to improve it (discuss with the teams what to focus on next).


Version published
Maintainers
4
Created

Readme

Source

score-card

Welcome to the score-card plugin! Main idea behind it comes from a need to somehow visualize maturity of our services and to establish a process how to improve it (discuss with the teams what to focus on next).

Components

ScoreBoardPage

Displays list of systems and their scores.

Score board

ScoreCard

Displays detail for one system and it's scoring. You may use it in entity detail page in the catalog.

Score Card

You may drill down to the details of each score together with explanation why it has such score & also a TODO for the team.

Score Card Detail

ScoringDataJsonClient

Implementation of ScoringDataApi that the above components are using to load data. This client simply reads it from a JSON files located e.g. on a blob storage account.

The location of the JSON files may be configured in `app-config.yaml' like this:

scorecards:
  jsonDataUrl: https://some.server/folder-with-data/

In the above location it expects data in a format see scoring data.

How to use the plugin

  1. Add Score board to packages/app/src/App.tsx:

    +import { ScoreBoardPage } from '@backstage/plugin-score-card';
    
    const routes = (
      <FlatRoutes>
    +    <Route path="/score-board" element={<ScoreBoardPage />} />
      </FlatRoutes>
    );
    
  2. Add Link to menu packages/app/src/components/Root/Root.tsx:

    +import Score from '@material-ui/icons/Score';
    
    export const Root = ({ children }: PropsWithChildren<{}>) => (
       <SidebarPage>
         <Sidebar>
           <SidebarGroup label="Menu" icon={<MenuIcon />}>
             ...
             <SidebarScrollWrapper>
               ...
    +          <SidebarItem icon={Score} to="score-board" text="Score board" />
             </SidebarScrollWrapper>
           </SidebarGroup>
           ...
         </Sidebar>
         {children}
       </SidebarPage>
     );
    
  3. Add Score Card to packages/app/src/components/catalog/EntityPage.tsx:

    +import { EntityScoreCardContent } from '@backstage/plugin-score-card';
    
    const systemPage = (
       <EntityLayoutWrapper>
         <EntityLayout.Route path="/" title="Overview">
           ...
         </EntityLayout.Route>
    +
    +    <EntityLayout.Route path="/score" title="Score">
    +      <Grid container spacing={3} alignItems="stretch">
    +        <Grid item xs={12}>
    +          <EntityScoreCardContent />
    +        </Grid>
    +      </Grid>
    +    </EntityLayout.Route>
    +
       </EntityLayoutWrapper>
    );
    

Scoring process

To find out a score for your service we follow this process:

  • Scoring introduction
  • Team self-assessment
  • Review process
  • Backstage integration & visualization
  • Regular update

Scoring introduction

We have based the scoring on a set of non-functional requirements in these areas:

  • Code: coding standards, implementation of proper logging, audits, resiliency patterns etc.
  • Quality: coverage by unit & automated integration tests, implementation of SonarCloud, performance tests etc.
  • Operations: readiness for operating the service such as automated ci/cd pipelines, dashboards, alerts, GitOps, DRP etc.
  • Documentation: various documentation e.g. project description, README, wiki (business, technical), road map, etc.
  • Security: fulfillment of our security standards.

The main goal of the scoring is to visualize the maturity of the services (systems). We do not expect each service to have 100 % fulfillment for every area. Primary goal is to identify where we can help the team to improve and where we should help all teams in general.

Also every service is specific and in a different state of implementation. When a team starts building a new service it is absolutely OK to have e.g. low Operations score.

So as a first step the teams need to understand why. That is why there is an important step to prepare teams for the scoring process, e.g. with following presentation: system-scoring.pdf.

Team self-assessment

Team does the self assessment, that is answering a form (e.g. via Sharepoint list) with list of questions. There is a space for comments. Each requirement is described in detail in a wiki.

Example how a form in Sharepoint may look like:

Sharepoint Form

Review process

Answers & comments are reviewed together with the team by an architect. Questions are answered, possible improvements and TODOs discussed and agreed with the team & product owner(s).

Backstage integration & visualization

There is an integration pipeline that runs regularly that integrates the Sharepoint list, git repository with the scoring data and the storage account that provides JSON scoring data for the Backstage plugin to visualize results.

For more detailed info see README.

Regular update

Every 6 months (it depends) there needs to be a quick update with the team & the architect so we can see whenever we are improving.

Local environment

You would need the same prerequisites as for backstage (node.js,...). One component you would need is http-server that will provide the sample data for the plugin.

Navigate to the plugin directory /plugins/score-card and run yarn start:dev. Your local DEV environment will start: http://localhost:3024/.

Unit testing

To run unit tests simply execute yarn test score-card;

Integration testing

This is being done as part of the backstage integration tests. See /cypress/src/integration/score-card.

Getting started

Your plugin has been added to the example app in this repository, meaning you'll be able to access it by running yarn start in the root directory, and then navigating to /score-card.

You can also serve the plugin in isolation by running yarn start in the plugin directory. This method of serving the plugin provides quicker iteration speed and a faster startup and hot reloads. It is only meant for local development, and the setup for it can be found inside the /dev directory.

Keywords

FAQs

Last updated on 20 Sep 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc