![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@roadiehq/backstage-plugin-bugsnag
Advanced tools
![a preview of the Bugsnag plugin](./docs/backstage-bugsnag-plugin.png)
Since Bugsnag has a policy around API rate limits (https://bugsnagapiv2.docs.apiary.io/#introduction/rate-limiting), we are not displaying error trends in the table. However, you can visit error details page in Bugsnag for more details, including error trend.
If you have your own backstage application without this plugin, here it's how to add it:
backstage/packages/app
:cd packages/app
yarn add @roadiehq/backstage-plugin-bugsnag
app-config.yaml
file in the root directory, add bugsnag to the proxy object:proxy:
...
'/bugsnag/api':
target: 'https://api.bugsnag.com'
headers:
Authorization: 'token ${BUGSNAG_PERSONAL_TOKEN}'
X-version: '2'
Define number of results fetched per request (this is optional and if ommited it will be set to default value of 30). This will be used as a 'per_page' parameter (https://bugsnagapiv2.docs.apiary.io/#introduction/rate-limiting).
bugsnag:
resultsPerPage: <number>
// packages/app/src/components/catalog/EntityPage.tsx
import { EntityBugsnagErrorsOverviewTable } from '@roadiehq/backstage-plugin-bugsnag';
...
const serviceEntityPage = (
<EntityLayoutWrapper>
...
<EntityLayout.Route
path="/bugsnag"
title="Bugsnag">
<EntityBugsnagErrorsOverviewTable />
</EntityLayout.Route>
...
</EntityLayoutWrapper>
);
yarn start
and navigate to services tabs.bugsnag.com/project-key: <organization-name>/<project-name>
Note that you must use the full names, not the slugs.
These values can be found in Bugsnag settings dashboard, under organization and project settings.
Add your Bugsnag personal auth token to the environment variables of your backstage backend server (you can find it in https://app.bugsnag.com/settings/{organizationaname}/my-account/auth-tokens), in the form of the word 'token' followed by your token. So it should look like this:
BUGSNAG_PERSONAL_TOKEN="token <your-api-key>"
FAQs
Unknown package
The npm package @roadiehq/backstage-plugin-bugsnag receives a total of 156 weekly downloads. As such, @roadiehq/backstage-plugin-bugsnag popularity was classified as not popular.
We found that @roadiehq/backstage-plugin-bugsnag demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.