Skip to content

Commit

Permalink
style(sweep): Remove slash used as "or" or "and" (#16172)
Browse files Browse the repository at this point in the history
* style(sweep): Remove slash used as "or" or "and"

* chore(java): Slash used for or vs and

* style(keyboard shortcuts): Remove slash used as or
  • Loading branch information
austin-schaefer authored Aug 14, 2024
1 parent d61451e commit 46104ec
Show file tree
Hide file tree
Showing 16 changed files with 86 additions and 103 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ To pass the `-javaagent` argument on JBoss:
<tbody>
<tr>
<td>
Unix / macOS with 6.x EAP or 7.0.x AS and above
Unix or macOS with 6.x EAP or 7.0.x AS and above
</td>

<td>
Expand Down Expand Up @@ -187,7 +187,7 @@ To pass the `-javaagent` argument on JBoss:

<tr>
<td>
Unix / macOS with 6.x or earlier
Unix or macOS with 6.x or earlier
</td>

<td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ The Ruby agent reports and attaches the following attributes to spans produced b
</td>

<td>
The namespace (class / module name) in which `code.function` is defined
The namespace (class or module name) in which `code.function` is defined
</td>

<td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ Background jobs supported by the New Relic Ruby agent include:
</tbody>
</table>

## HTTP / network clients [#http_network_clients]
## HTTP and network clients [#http_network_clients]

HTTP clients supported by the Ruby agent include:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -393,78 +393,65 @@ If your organization has [multiple accounts](/docs/accounts/accounts-billing/gen
You can use keyboard shortcuts to navigate through the UI efficiently.

<table>
<thead>
<tr>
<th>
Action
</th>

<th>
Shortcut
</th>
</tr>
</thead>

<tbody>
<tr>
<td>
Open keyboard shortcut list
</td>

<td>
`?`
</td>
</tr>

<tr>
<td>
Collapse / expand the side menu
</td>

<td>
`[`
</td>
</tr>

<tr>
<td>
Open global search
</td>

<td>
Mac: `` + `K`

Windows: `Ctrl` + `K`
</td>
</tr>

<tr>
<td>
Open NRQL console
</td>

<td>
`Ctrl` + `Shift` + `O`
</td>
</tr>

<tr>
<td>
Focus filter / search input
</td>

<td>
`F`
</td>
</tr>

<tr>
<td>
Copy permalink
</td>

<td>
Mac: `` + `.`
<thead>
<tr>
<th>
Action
</th>
<th>
Shortcut
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Open keyboard shortcut list
</td>
<td>
`?`
</td>
</tr>
<tr>
<td>
Collapse or expand the side menu
</td>
<td>
`[`
</td>
</tr>
<tr>
<td>
Open global search
</td>
<td>
Mac: `` + `K`

Windows: `Ctrl` + `K`
</td>
</tr>
<tr>
<td>
Open NRQL console
</td>
<td>
`Ctrl` + `Shift` + `O`
</td>
</tr>
<tr>
<td>
Focus filter input
</td>
<td>
`F`
</td>
</tr>
<tr>
<td>
Copy permalink
</td>
<td>
Mac: `` + `.`

Windows: `Ctrl` + `.`
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ Typical attendees would be:

* OCoE core team
* Guild heroes (possibly)
* New Relic CSM / SA / TAM
* New Relic CSM, SA, or TAM

### Knowledge base [#coe-knowledge-base]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ Here's a table with the problem matrix sorted by sources.
1. Recent deployment (code)
2. Hardware resource constraints
3. Database constraints
4. Config change (hardware / routing / networking)
4. Config change (hardware, routing, or networking)
5. 3rd party dependency
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/nrql/nrql-syntax-clauses-functions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ As noted in our [basic NRQL syntax doc](/docs/query-your-data/nrql-new-relic-que

Use the `WITH ... AS` clause to define NRQL variables to store values as variables that can be referenced anywhere in the query. Some rules and tips:

* The `WITH ... AS` clause can go before, in between, or directly after the `FROM`/`SELECT` clause
* The `WITH ... AS` clause can go before, in between, or directly after the `FROM` or `SELECT` clause
* Only row-wise functions (for example, `capture()`) can be set as a variable. Aggregator functions, such as `average()`, are not supported.
* Only one `WITH` can be used, but you can use multiple NRQL variables as long as they're separated by a comma.
* If a defined NRQL variable uses the same name as an existing attribute, the variable will take precedence.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ In this tutorial, we'll go a little deeper and explore more functions for creati
* Calculate percentages based on a qualifer or other data point with `percentile()`
* Perform basic math using attributes and aggregation functions, or a combination of both
* Cast attribute names to something custom and more readable
* Search to include/exclude using wildcards with `LIKE`/`NOT LIKE`, or limit results to those `IN` a list or `NOT IN` that list
* Search to include/exclude using wildcards with `LIKE`or `NOT LIKE`, or limit results to those `IN` a list or `NOT IN` that list
* Query within more advanced time windows using dates, epoch, and `WITH TIMEZONE`
* Group data into interesting time windows using time-based cohorting

Expand Down Expand Up @@ -159,7 +159,7 @@ Let's get started!

As you can see, aggregation can manipulate data in powerful ways. You can use `uniqueCount()` to count the unique entries of a particular attribute. But you could also use this to identify a count of unique machines, reporting containers, or even how many custom data points get sent to New Relic. And, if you want to know what unique values are available to query, you can always ask for a list using `uniques()`.

The `latest()`/`earliest()` functions have particular value when dealing with sparse data, or investigating when something began or stopped reporting (assuming New Relic still stores the data). The `percentage()` function can show you what percentage of events matched a qualifier compared with the overall result set. Lastly, you can use `percentile()` as a Key Performance Indictator by setting a goal to ensure 90% of all end user transactions exceed the provided duration.
The `latest()` and `earliest()` functions have particular value when dealing with sparse data, or investigating when something began or stopped reporting (assuming New Relic still stores the data). The `percentage()` function can show you what percentage of events matched a qualifier compared with the overall result set. Lastly, you can use `percentile()` as a Key Performance Indictator by setting a goal to ensure 90% of all end user transactions exceed the provided duration.

In the next step, you'll learn how to do basic mathematics with NRQL.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ Here are some different types of template variable implementations.

<Collapser
id="variables-regex-like-rlike"
title="Use variables and regex with LIKE / RLIKE"
title="Use variables and regex with LIKE and RLIKE"
>
You can use `LIKE` and `RLIKE` as template variables to filter data in a dashboard. To use this feature, the value you add when creating the template variable must use the `%` wildcard symbols at the start and end of the value.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Because of this, ensure your firewall allows synthetics network requests. Minion
<DNT>**Optional steps**</DNT>:

* You can automate your rules for your allow list based on these files.
* You can identify synthetic monitor requests using [our standard headers](/docs/synthetics/new-relic-synthetics/administration/identify-synthetics-requests-your-app) or by adding a custom header to your [ping / simple browser monitor](/docs/synthetics/synthetic-monitoring/using-monitors/add-edit-monitors/#simple), [scripted API monitor](/docs/synthetics/synthetic-monitoring/scripting-monitors/write-synthetic-api-tests/#request-options), or [scripted browser monitor](/docs/synthetics/synthetic-monitoring/scripting-monitors/synthetic-scripted-browser-reference-monitor-versions-chrome-100#structure).
* You can identify synthetic monitor requests using [our standard headers](/docs/synthetics/new-relic-synthetics/administration/identify-synthetics-requests-your-app) or by adding a custom header to your [ping or simple browser monitor](/docs/synthetics/synthetic-monitoring/using-monitors/add-edit-monitors/#simple), [scripted API monitor](/docs/synthetics/synthetic-monitoring/scripting-monitors/write-synthetic-api-tests/#request-options), or [scripted browser monitor](/docs/synthetics/synthetic-monitoring/scripting-monitors/synthetic-scripted-browser-reference-monitor-versions-chrome-100#structure).

## IP addresses are not personal data [#not-personal-data]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ To host CPMs, your system must meet the minimum requirements for the chosen syst
<td>
The OS and architecture must be a [platform supported by Docker](https://docs.docker.com/engine/install/#supported-platforms).

_You must also configure Docker to run Linux containers in order for CPMs to work on Windows-based Docker hosts._
You must also configure Docker to run Linux containers in order for CPMs to work on Windows-based Docker hosts.
</td>
</tr>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ To host synthetics job managers, your system must meet the minimum requirements
</td>

<td>
A modern, multi-core AMD64 / x86_64 CPU
A modern, multi-core AMD64 or x86_64 CPU
</td>
</tr>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Environmental variables allow you to fine-tune the synthetics job manager config
</td>

<td>
The Docker repository / organization where the runtime images are hosted. Use this to override `newrelic` as the default.
The Docker repository or organization where the runtime images are hosted. Use this to override `newrelic` as the default.
</td>
</tr>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -551,13 +551,11 @@ Like the process of monitoring services, your observability program will benefit
>
Ensure all developers are familiar with New Relic agent SDKs and platform capabilities.

<DNT>**Cost model:**</DNT> Dependent on your company's developer FTE model and project estimation.

<DNT>**Estimation:**</DNT> Typically a number of hours for a developer to become effective using New Relic instrumentation features.

* Initial: 16 hours training / exploration
* Recurring: 4 hours/Q review
* Per developer a yearly investment of 16-40 hours training to develop core skills and maintain skills currency for New Relic platform
**Cost model:** Dependent on your company's developer FTE model and project estimation.
**Estimation:** Typically a number of hours for a developer to become effective using New Relic instrumentation features.
* Initial: 16 hours training and exploration
* Recurring: 4 hours/Q review
* Per developer a yearly investment of 16 to 40 hours training to develop core skills and maintain skills currency for New Relic platform
</Collapser>

<Collapser
Expand All @@ -566,13 +564,11 @@ Like the process of monitoring services, your observability program will benefit
>
The development effort required to implement and maintain instrumentation within a service project.

<DNT>**Cost model:**</DNT> Dependent on your company's developer FTE model and project estimation.

<DNT>**Estimation:**</DNT> This tends to be dependent on the scope of the project and the amount of instrumentation work required.

* Initial: 8 hours per developer per service
* Recurring: 4 hours/Q maintenance
* Per developer a project estimation of 16-32 hours developing and maintaining service instrumentation
**Cost model:** Dependent on your company's developer FTE model and project estimation.
**Estimation:** This tends to be dependent on the scope of the project and the amount of instrumentation work required.
* Initial: 8 hours per developer per service
* Recurring: 4 hours/Q maintenance
* Per developer a project estimation of 16 to 32 hours developing and maintaining service instrumentation
</Collapser>
</CollapserGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ Like the process of monitoring services, your observability program will benefit

<DNT>**Estimation:**</DNT> Typically a number of hours for a developer to become effective using New Relic instrumentation features.

* Initial: 16 hours training / exploration
* Initial: 16 hours training and exploration
* Recurring: 4 hours/Q review
* Per developer a yearly investment of 16-40 hours training to develop core skills and maintain skills currency for New Relic platform
</Collapser>
Expand Down
4 changes: 2 additions & 2 deletions src/install/java/frameworkInstallation/jboss.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ To pass the `-javaagent` argument on JBoss:
<tbody>
<tr>
<td>
Unix / macOS with 6.x EAP or 7.0.x AS and above
Unix or macOS with 6.x EAP or 7.0.x AS and above
</td>

<td>
Expand Down Expand Up @@ -100,7 +100,7 @@ To pass the `-javaagent` argument on JBoss:

<tr>
<td>
Unix / macOS with 6.x or earlier
Unix or macOS with 6.x or earlier
</td>

<td>
Expand Down

0 comments on commit 46104ec

Please sign in to comment.