Files
backstage/plugins/newrelic/CHANGELOG.md
T
github-actions[bot] ff2ab4fade Version Packages
2021-03-04 13:11:10 +00:00

2.9 KiB

@backstage/plugin-newrelic

0.2.6

Patch Changes

0.2.5

Patch Changes

  • c5ab91ce3: Migrate to new composability API, exporting the plugin instance as newRelicPlugin, and the root page as NewRelicPage.
  • Updated dependencies [b51ee6ece]
    • @backstage/core@0.6.1

0.2.4

Patch Changes

0.2.3

Patch Changes

0.2.2

Patch Changes

0.2.1

Patch Changes

0.2.0

Minor Changes

  • 28edd7d29: Create backend plugin through CLI

  • 4512b9967: The New Relic plugin now uses the Backstage proxy to communicate with New Relic's API.

    Please update your app-config.yaml as follows:

    # Old Config
    newrelic:
      api:
        baseUrl: 'https://api.newrelic.com/v2'
        key: NEW_RELIC_REST_API_KEY
    
    # New Config
    proxy:
      '/newrelic/apm/api':
        target: https://api.newrelic.com/v2
        headers:
          X-Api-Key:
            $env: NEW_RELIC_REST_API_KEY
    

Patch Changes