Skip to content

Commit ab7d985

Browse files
committed
fix: APM -> tracing
1 parent f08c29d commit ab7d985

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

packages/tracing/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<br />
66
</p>
77

8-
# Sentry APM Extensions
8+
# Sentry Tracing Extensions
99

10-
[![npm version](https://img.shields.io/npm/v/@sentry/apm.svg)](https://www.npmjs.com/package/@sentry/apm)
11-
[![npm dm](https://img.shields.io/npm/dm/@sentry/apm.svg)](https://www.npmjs.com/package/@sentry/apm)
12-
[![npm dt](https://img.shields.io/npm/dt/@sentry/apm.svg)](https://www.npmjs.com/package/@sentry/apm)
10+
[![npm version](https://img.shields.io/npm/v/@sentry/tracing.svg)](https://www.npmjs.com/package/@sentry/tracing)
11+
[![npm dm](https://img.shields.io/npm/dm/@sentry/tracing.svg)](https://www.npmjs.com/package/@sentry/tracing)
12+
[![npm dt](https://img.shields.io/npm/dt/@sentry/tracing.svg)](https://www.npmjs.com/package/@sentry/tracing)
1313
[![typedoc](https://img.shields.io/badge/docs-typedoc-blue.svg)](http://getsentry.github.io/sentry-javascript/)
1414

1515
## Links
@@ -19,4 +19,4 @@
1919

2020
## General
2121

22-
This package contains extensions to the `@sentry/hub` to enable APM related functionality. It also provides integrations for Browser and Node that provide a good experience out of the box.
22+
This package contains extensions to the `@sentry/hub` to enable Sentry AM related functionality. It also provides integrations for Browser and Node that provide a good experience out of the box.

packages/tracing/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "@sentry/apm",
2+
"name": "@sentry/tracing",
33
"version": "5.19.0",
4-
"description": "Extensions for APM",
4+
"description": "Extensions for Tracing",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
6-
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/apm",
6+
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/tracing",
77
"author": "Sentry",
88
"license": "BSD-3-Clause",
99
"engines": {

packages/tracing/rollup.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ const bundleConfig = {
6161
...plugins,
6262
license({
6363
sourcemap: true,
64-
banner: `/*! @sentry/apm & @sentry/browser <%= pkg.version %> (${commitHash}) | https://github.com/getsentry/sentry-javascript */`,
64+
banner: `/*! @sentry/tracing & @sentry/browser <%= pkg.version %> (${commitHash}) | https://github.com/getsentry/sentry-javascript */`,
6565
}),
6666
],
6767
};
6868

6969
export default [
70-
// ES5 Browser APM Bundle
70+
// ES5 Browser Tracing Bundle
7171
{
7272
...bundleConfig,
7373
input: 'src/index.bundle.ts',
7474
output: {
7575
...bundleConfig.output,
76-
file: 'build/bundle.apm.js',
76+
file: 'build/bundle.tracing.js',
7777
},
7878
plugins: bundleConfig.plugins,
7979
},
@@ -82,7 +82,7 @@ export default [
8282
input: 'src/index.bundle.ts',
8383
output: {
8484
...bundleConfig.output,
85-
file: 'build/bundle.apm.min.js',
85+
file: 'build/bundle.tracing.min.js',
8686
},
8787
// Uglify has to be at the end of compilation, BUT before the license banner
8888
plugins: bundleConfig.plugins

packages/tracing/src/hubextensions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function startSpan(this: Hub, context: SpanContext): Transaction | Span {
8484
}
8585

8686
/**
87-
* This patches the global object and injects the APM extensions methods
87+
* This patches the global object and injects the Tracing extensions methods
8888
*/
8989
export function addExtensionMethods(): void {
9090
const carrier = getMainCarrier();

0 commit comments

Comments
 (0)