Skip to content

Commit e8a5d13

Browse files
committed
Change NR One to just NR
1 parent 7304d59 commit e8a5d13

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

Diff for: jb/docs/description.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ <h1 id="integrations">Integrations</h1>
88
<ul>
99
<li><b>Code Hosts:</b> Bitbucket, Bitbucket Server, GitHub, GitHub Enterprise, GitLab, GitLab Self-Managed</li>
1010
<li><b>Issue Trackers:</b> Asana, Azure DevOps, Bitbucket, GitHub, GitHub Enterprise, GitLab, GitLab Self-Managed, Jira, Linear, Shortcut, Trello, YouTrack</li>
11-
<li><b>Observability:</b> New Relic One, Microsoft Pixie</li>
11+
<li><b>Observability:</b> New Relic, Microsoft Pixie</li>
1212
<li><b>Messaging Services:</b> Slack, Microsoft Teams</li>
1313
</ul>
1414

@@ -41,11 +41,11 @@ <h1 id="discusscode">Simplified Code Discussion</h1>
4141
<p><img src="https://raw.githubusercontent.com/TeamCodeStream/CodeStream/master/images/ShareOnSlack1.png" alt="Share on Slack" /></p>
4242

4343
<h1 id="observability">Add Observability to your IDE</h1>
44-
<p>Resolve production errors faster and improve software performance by bringing production telemetry from New Relic One into your IDE. Operations and dev teams can identify application owners quickly and work together to resolve critical errors.</p>
44+
<p>Resolve production errors faster and improve software performance by bringing production telemetry from New Relic into your IDE. Operations and dev teams can identify application owners quickly and work together to resolve critical errors.</p>
4545
<br/>
4646
<p><img src="https://raw.githubusercontent.com/TeamCodeStream/codestream/develop/jb/docs/images/Observability-JB_700.gif" alt="Observability" /></p>
4747
<br/>
48-
<p>In a single click, you can jump from Errors Inbox in New Relic One to their IDE and step through the stack trace for code-level debugging of high-impact errors. Additionally, discover, view, filter, and update the status of open issues all from the comfort of your favorite IDE.</p>
48+
<p>In a single click, you can jump from Errors Inbox on New Relic to their IDE and step through the stack trace for code-level debugging of high-impact errors. Additionally, discover, view, filter, and update the status of open issues all from the comfort of your favorite IDE.</p>
4949

5050
<h1 id="knowledgebase">Build the Knowledge Base Behind Your Codebase</h1>
5151
<p>CodeStream turns conversation into documentation by capturing all of the discussion about your code, and saving it with your code. Comment and code review threads are automatically repositioned as your code changes, even across branches. All with zero effort on your part.</p>

Diff for: jb/src/main/kotlin/mlt/MLTPythonComponent.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ class MLTPythonEditorManager(val editor: Editor) : DocumentListener, GoldenSigna
280280
}
281281
})
282282
val withTooltipPresentation = presentationFactory.withTooltip(
283-
"Associate this repository with an entity from New Relic One so that you can see golden signals right in your editor",
283+
"Associate this repository with an entity from New Relic so that you can see golden signals right in your editor",
284284
referenceOnHoverPresentation
285285
)
286286
val renderer = PresentationRenderer(withTooltipPresentation)

Diff for: shared/ui/Stream/ConfigureNewRelic.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export default function ConfigureNewRelic(props: Props) {
265265
loading={loading}
266266
>
267267
<Icon name="newrelic" />
268-
<div className="copy"> Connect to New Relic One</div>
268+
<div className="copy"> Connect to New Relic</div>
269269
<Icon name="chevron-right" />
270270
</Button>
271271
</div>
@@ -296,7 +296,7 @@ export default function ConfigureNewRelic(props: Props) {
296296
}}
297297
>
298298
<Icon name="newrelic" />
299-
<div className="copy">Sign Up for New Relic One</div>
299+
<div className="copy">Sign Up for New Relic</div>
300300
<Icon name="chevron-right" />
301301
</Button>
302302
</div>

Diff for: shared/ui/Stream/MethodLevelTelemetry/MethodLevelTelemetryPanel.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export const MethodLevelTelemetryPanel = () => {
158158
<div className="embedded-panel">
159159
<EntityAssociator
160160
title="Method-Level Telemetry"
161-
label="Associate this repository with an entity from New Relic One so that you can see golden signals right in your editor, and errors in the Observability section."
161+
label="Associate this repository with an entity from New Relic so that you can see golden signals right in your editor, and errors in the Observability section."
162162
onSuccess={async e => {
163163
HostApi.instance.track("MLT Repo Association", {
164164
"NR Account ID": derivedState.currentMethodLevelTelemetry.newRelicAccountId + ""
@@ -223,7 +223,7 @@ export const MethodLevelTelemetryPanel = () => {
223223
/>
224224

225225
{telemetryResponse && telemetryResponse.newRelicUrl && (
226-
<Tooltip title="View service summary on New Relic One" placement="bottom" delay={1}>
226+
<Tooltip title="View service summary on New Relic" placement="bottom" delay={1}>
227227
<span style={{ opacity: ".5" }}>
228228
<ApmServiceTitle>
229229
<Link
@@ -383,7 +383,7 @@ export const MethodLevelTelemetryPanel = () => {
383383
{/* {telemetryResponse && telemetryResponse.newRelicUrl && (
384384
<div>
385385
<Link className="external-link" href={telemetryResponse.newRelicUrl}>
386-
View service summary on New Relic One <Icon name="link-external" />
386+
View service summary on New Relic <Icon name="link-external" />
387387
</Link>
388388
</div>
389389
)} */}

Diff for: shared/ui/Stream/Observability.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ const ErrorRow = (props: {
160160
<Icon
161161
name="globe"
162162
className="clickable"
163-
title="View on New Relic One"
163+
title="View on New Relic"
164164
placement="bottomLeft"
165165
delay={1}
166166
/>
@@ -662,7 +662,7 @@ export const Observability = React.memo((props: Props) => {
662662
{noAccess ? (
663663
<div style={{ padding: "0 20px 20px 20px" }}>
664664
<span>
665-
Your New Relic One account doesn’t have access to the integration with
665+
Your New Relic account doesn’t have access to the integration with
666666
CodeStream. Contact your New Relic admin to upgrade.
667667
</span>
668668
</div>
@@ -844,7 +844,7 @@ export const Observability = React.memo((props: Props) => {
844844
}}
845845
>
846846
<Icon name="newrelic" />
847-
Connect to New Relic One
847+
Connect to New Relic
848848
</span>
849849
</Provider>
850850
</div>

Diff for: vs/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ New Relic CodeStream is a developer collaboration platform that integrates all o
66

77
- **Code Hosts:** Bitbucket, Bitbucket Server, GitHub, GitHub Enterprise, GitLab, GitLab Self-Managed
88
- **Issue Trackers:** Asana, Azure DevOps, Bitbucket, Clubhouse, GitHub, GitHub Enterprise, GitLab, GitLab Self-Managed, Jira, Linear, Trello, YouTrack
9-
- **Observability:** New Relic One, Pixie
9+
- **Observability:** New Relic, Pixie
1010
- **Messaging Services:** Slack, Microsoft Teams
1111

1212
### Requirements
@@ -41,11 +41,11 @@ Your teammates can participate in the discussion right from their IDE, or from S
4141

4242
# Add Observability to your IDE
4343

44-
Resolve production errors faster and improve software performance by bringing production telemetry from New Relic One into your IDE. Operations and dev teams can identify application owners quickly and work together to resolve critical errors.
44+
Resolve production errors faster and improve software performance by bringing production telemetry from New Relic into your IDE. Operations and dev teams can identify application owners quickly and work together to resolve critical errors.
4545

4646
![Observability](https://raw.githubusercontent.com/TeamCodeStream/codestream/develop/images/animated/Observability-VS.gif)
4747

48-
In a single click, you can jump from Errors Inbox in New Relic One to their IDE and step through the stack trace for code-level debugging of high-impact errors. Additionally, discover, view, filter, and update the status of open issues all from the comfort of your favorite IDE.
48+
In a single click, you can jump from Errors Inbox on New Relic to their IDE and step through the stack trace for code-level debugging of high-impact errors. Additionally, discover, view, filter, and update the status of open issues all from the comfort of your favorite IDE.
4949

5050
# Build the Knowledge Base Behind Your Codebase
5151

Diff for: vs/src/CodeStream.VisualStudio/source.extension.vsixmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Identity Id="codestream-vs" Version="12.15.1.0" Language="en-US" Publisher="CodeStream" />
55
<!-- DisplayName maxLength=50 -->
66
<DisplayName>New Relic CodeStream - GitHub, GitLab PRs &amp; Review</DisplayName>
7-
<Description xml:space="preserve">GitHub pull requests, GitLab merge requests, and code reviews in your IDE. Eliminate context-switching. Integrates with New Relic One observability, Bitbucket, Slack, MS Teams, Jira, Trello and more.</Description>
7+
<Description xml:space="preserve">GitHub pull requests, GitLab merge requests, and code reviews in your IDE. Eliminate context-switching. Integrates with New Relic observability, Bitbucket, Slack, MS Teams, Jira, Trello and more.</Description>
88
<MoreInfo>https://codestream.com/</MoreInfo>
99
<ReleaseNotes>CHANGELOG.txt</ReleaseNotes>
1010
<Icon>Resources\Assets\codestream.png</Icon>

Diff for: vscode/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ New Relic CodeStream is a developer collaboration platform that integrates essen
1010

1111
- **Code Hosts:** Bitbucket, Bitbucket Server, GitHub, GitHub Enterprise, GitLab, GitLab Self-Managed
1212
- **Issue Trackers:** Asana, Azure DevOps, Bitbucket, Clubhouse, GitHub, GitHub Enterprise, GitLab, GitLab Self-Managed, Jira, Linear, Trello, YouTrack
13-
- **Observability:** New Relic One, Pixie
13+
- **Observability:** New Relic, Pixie
1414
- **Messaging Services:** Slack, Microsoft Teams
1515

1616
### Requirements
@@ -44,11 +44,11 @@ Your teammates can participate in the discussion right from their IDE, or from S
4444

4545
# Add Observability to your IDE
4646

47-
Resolve production errors faster and improve software performance by bringing production telemetry from New Relic One into your IDE. Operations and dev teams can identify application owners quickly and work together to resolve critical errors.
47+
Resolve production errors faster and improve software performance by bringing production telemetry from New Relic into your IDE. Operations and dev teams can identify application owners quickly and work together to resolve critical errors.
4848

4949
![Observability](https://raw.githubusercontent.com/TeamCodeStream/codestream/develop/images/animated/Observability-VSC.gif)
5050

51-
In a single click, you can jump from Errors Inbox in New Relic One to their IDE and step through the stack trace for code-level debugging of high-impact errors. Additionally, discover, view, filter, and update the status of open issues all from the comfort of your favorite IDE.
51+
In a single click, you can jump from Errors Inbox on New Relic to their IDE and step through the stack trace for code-level debugging of high-impact errors. Additionally, discover, view, filter, and update the status of open issues all from the comfort of your favorite IDE.
5252

5353

5454
# Build the Knowledge Base Behind Your Codebase

Diff for: vscode/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codestream",
33
"displayName": "New Relic CodeStream: GitHub, GitLab, Bitbucket PRs and Code Review",
4-
"description": "GitHub pull requests, GitLab merge requests, and code reviews in your IDE. Eliminate context-switching. Integrates with New Relic One observability, Bitbucket, Slack, MS Teams, Jira, Trello and more.",
4+
"description": "GitHub pull requests, GitLab merge requests, and code reviews in your IDE. Eliminate context-switching. Integrates with New Relic observability, Bitbucket, Slack, MS Teams, Jira, Trello and more.",
55
"version": "12.15.1",
66
"author": "CodeStream",
77
"publisher": "CodeStream",

Diff for: vscode/src/providers/instrumentationCodeLensProvider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export class InstrumentationCodeLensProvider implements vscode.CodeLensProvider
152152
new InstrumentableSymbolCommand(
153153
"Click to configure golden signals from New Relic",
154154
"codestream.viewMethodLevelTelemetry",
155-
"Associate this repository with an entity from New Relic One so that you can see golden signals right in your editor",
155+
"Associate this repository with an entity from New Relic so that you can see golden signals right in your editor",
156156
[JSON.stringify(viewCommandArgs)]
157157
)
158158
)

0 commit comments

Comments
 (0)