24254fd433
Bumps [@testing-library/user-event](https://github.com/testing-library/user-event) from 13.5.0 to 14.0.0. - [Release notes](https://github.com/testing-library/user-event/releases) - [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.0) --- updated-dependencies: - dependency-name: "@testing-library/user-event" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Johan Haals <johan.haals@gmail.com>
XCMetrics
XCMetrics is a tool for collecting build metrics from XCode.
With this plugin, you can view data from XCMetrics directly in Backstage.
Getting started
From packages/app:
yarn add @backstage/plugin-xcmetrics
In packages/app/src/App.tsx, add the following:
import { XcmetricsPage } from '@backstage/plugin-xcmetrics';
<FlatRoutes>
{/* Other routes... */}
<Route path="/xcmetrics" element={<XcmetricsPage />} />
</FlatRoutes>
Add the URL to your XCMetrics backend instance in app-config.yaml like so:
proxy:
...
'/xcmetrics':
target: http://127.0.0.1:8080/v1
Start Backstage and navigate to /xcmetrics to view your build metrics!
