Skip to content

Commit 65f1e8b

Browse files
Merge pull request #23673 from newrelic/daily-merge/08-0402026-morning-2
Daily merge/08 0402026 morning 2
2 parents aa830d6 + 4fd2529 commit 65f1e8b

19 files changed

Lines changed: 366 additions & 226 deletions

File tree

src/content/docs/accounts/accounts/account-maintenance/account-email-settings.mdx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,20 @@ New Relic user email addresses have to the following restrictions:
4242
<Callout variant="tip">
4343
SSO/SAML users:
4444

45-
You can't update your email address while authenticated into a SSO/SAML account. You'll only be able to change your email address while logged into a non-SAML account.
45+
You can update your email address while authenticated into a SSO/SAML account using one of these methods:
4646

47-
Your email address is used to authenticate you into New Relic. Until your identity provider is updated to match your new email address, you won't be able to log in to New Relic.
47+
**Option 1: User Management UI**
48+
1. Navigate to [user management](https://one.newrelic.com/admin-portal/organizations/users-list)
49+
2. Click into your user details.
50+
3. Update your email and save.
51+
4. Update your email in your identity provider to match exactly.
52+
5. Test authentication.
53+
54+
If you get logged out during this process and you're an admin, you can use the [one-time SSO bypass](/docs/accounts/accounts-billing/account-setup/troubleshoot-new-relics-password-email-address-login-problems/#login-troubleshooting) to regain access.
55+
56+
**Option 2: NerdGraph API**
57+
58+
You can update your email via the [NerdGraph API](/docs/apis/nerdgraph/examples/nerdgraph-manage-users/#update-users) to avoid any risk of being logged out. For bulk updates, see this [KCS article on bulk user email updates](https://knowledge.newrelic.com/s/article/Bulk-User-Email-Updates).
4859
</Callout>
4960

5061
## Unsubscribe from emails [#emails]

src/content/docs/change-tracking/query-data.mdx

Lines changed: 138 additions & 137 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The following data sources are available for NRQL queries:
3232

3333
```sql
3434
FROM ChangeTrackingEvent, Deployment
35-
SELECT eventType(), deploymentId or changeTrackingId AS 'id', *
35+
SELECT eventType(), deploymentId OR changeTrackingId AS 'id', *
3636
WHERE (eventType() = 'Deployment' OR (eventType() = 'ChangeTrackingEvent' AND category = 'Deployment'))
3737
AND entity.name = '<your_service_name>'
3838
```
@@ -106,7 +106,7 @@ Use these examples in the [query builder](/docs/query-your-data/explore-query-da
106106
```sql
107107
SELECT count(*)
108108
FROM TransactionError
109-
WHERE appName = 'INSERT_YOUR_APP_NAME' AND http.statusCode > 300
109+
WHERE appName = 'INSERT_YOUR_APP_NAME' AND http.statusCode > 300
110110
SINCE 1 month ago TIMESERIES
111111
```
112112
</Collapser>
@@ -120,7 +120,7 @@ Use these examples in the [query builder](/docs/query-your-data/explore-query-da
120120
FROM Transaction
121121
WHERE appName = 'INSERT_YOUR_APP_NAME'
122122
FACET name
123-
LIMIT MAX
123+
LIMIT MAX
124124
SINCE 1 week ago TIMESERIES
125125
```
126126

@@ -180,25 +180,25 @@ Use these examples in the [NerdGraph explorer](/docs/apis/nerdgraph/get-started/
180180
title="List a set of events across all accounts for the past hour"
181181
>
182182
```graphql
183-
{
184-
actor {
185-
changeTracking {
186-
changeTrackingSearch {
187-
changeEvents {
188-
shortDescription
189-
category
190-
changeTrackingId
191-
customAttributes
192-
description
193-
groupId
194-
timestamp
195-
type
196-
user
197-
}
198-
}
183+
{
184+
actor {
185+
changeTracking {
186+
changeTrackingSearch {
187+
changeEvents {
188+
shortDescription
189+
category
190+
changeTrackingId
191+
customAttributes
192+
description
193+
groupId
194+
timestamp
195+
type
196+
user
199197
}
198+
}
200199
}
201-
}
200+
}
201+
}
202202
```
203203
</Collapser>
204204

@@ -208,38 +208,38 @@ Use these examples in the [NerdGraph explorer](/docs/apis/nerdgraph/get-started/
208208
title="Filter change event data by `timeWindow`, `accountIds`, and entity guid `query`"
209209
>
210210
```graphql
211-
{
212-
actor {
213-
changeTracking {
214-
changeTrackingSearch(
215-
filter: {
216-
timeWindow: {
217-
startTime: INSERT_MS_EPOCH_TIMESTAMP,
218-
endTime: INSERT_MS_EPOCH_TIMESTAMP
219-
},
220-
accountIds: INSERT_ACCOUNT_IDS,
221-
query: "entity.guid='INSERT_ENTITY_GUID'"
222-
}
223-
) {
224-
changeEvents {
225-
shortDescription
226-
category
227-
type
228-
changeTrackingId
229-
customAttributes
230-
description
231-
groupId
232-
timestamp
233-
user
234-
entity {
235-
guid
236-
accountId
237-
}
238-
}
211+
{
212+
actor {
213+
changeTracking {
214+
changeTrackingSearch(
215+
filter: {
216+
timeWindow: {
217+
startTime: INSERT_MS_EPOCH_TIMESTAMP
218+
endTime: INSERT_MS_EPOCH_TIMESTAMP
219+
}
220+
accountIds: INSERT_ACCOUNT_IDS
221+
query: "entity.guid = 'INSERT_ENTITY_GUID'"
239222
}
223+
) {
224+
changeEvents {
225+
shortDescription
226+
category
227+
type
228+
changeTrackingId
229+
customAttributes
230+
description
231+
groupId
232+
timestamp
233+
user
234+
entity {
235+
guid
236+
accountId
237+
}
240238
}
239+
}
241240
}
242-
}
241+
}
242+
}
243243
```
244244

245245
</Collapser>
@@ -252,27 +252,27 @@ Use these examples in the [NerdGraph explorer](/docs/apis/nerdgraph/get-started/
252252

253253

254254
```graphql
255-
{
256-
actor {
257-
changeTracking {
258-
changeTrackingSearch(
259-
filter: { query: "user = 'ChangeTrackingUser'", limit: 10 }
260-
) {
261-
changeEvents {
262-
shortDescription
263-
category
264-
type
265-
changeTrackingId
266-
customAttributes
267-
description
268-
groupId
269-
timestamp
270-
user
271-
}
272-
}
255+
{
256+
actor {
257+
changeTracking {
258+
changeTrackingSearch(
259+
filter: { query: "user = 'ChangeTrackingUser'", limit: 10 }
260+
) {
261+
changeEvents {
262+
shortDescription
263+
category
264+
type
265+
changeTrackingId
266+
customAttributes
267+
description
268+
groupId
269+
timestamp
270+
user
273271
}
272+
}
274273
}
275-
}
274+
}
275+
}
276276
```
277277

278278
</Collapser>
@@ -291,26 +291,26 @@ Use these examples in the [NerdGraph explorer](/docs/apis/nerdgraph/get-started/
291291
title="List version, entityGuid, and timestamp"
292292
>
293293
```graphql
294-
{
295-
actor {
296-
entity(guid: "INSERT_YOUR_GUID_HERE") {
297-
deploymentSearch(
298-
filter: {
299-
timeWindow: {
300-
endTime: INSERT_MS_EPOCH_TIMESTAMP,
301-
startTime: INSERT_MS_EPOCH_TIMESTAMP
302-
}
303-
}
304-
) {
305-
results {
306-
version
307-
entityGuid
308-
timestamp
309-
}
294+
{
295+
actor {
296+
entity(guid: "INSERT_YOUR_GUID_HERE") {
297+
deploymentSearch(
298+
filter: {
299+
timeWindow: {
300+
endTime: INSERT_MS_EPOCH_TIMESTAMP
301+
startTime: INSERT_MS_EPOCH_TIMESTAMP
302+
}
310303
}
304+
) {
305+
results {
306+
version
307+
entityGuid
308+
timestamp
311309
}
310+
}
312311
}
313-
}
312+
}
313+
}
314314
```
315315
</Collapser>
316316

@@ -320,35 +320,35 @@ Use these examples in the [NerdGraph explorer](/docs/apis/nerdgraph/get-started/
320320
title="List a variety of fields by a specific user"
321321
>
322322
```graphql
323-
{
324-
actor {
325-
entity(guid: "INSERT_YOUR_GUID_HERE") {
326-
deploymentSearch(
327-
filter: {
328-
timeWindow: {
329-
endTime: INSERT_MS_EPOCH_TIMESTAMP,
330-
startTime: INSERT_MS_EPOCH_TIMESTAMP
331-
},
332-
query: "user = 'Test User'"
333-
}
334-
) {
335-
results {
336-
version
337-
entityGuid
338-
timestamp
339-
changelog
340-
commit
341-
deepLink
342-
deploymentId
343-
description
344-
deploymentType
345-
groupId
346-
user
347-
}
323+
{
324+
actor {
325+
entity(guid: "INSERT_YOUR_GUID_HERE") {
326+
deploymentSearch(
327+
filter: {
328+
timeWindow: {
329+
endTime: INSERT_MS_EPOCH_TIMESTAMP
330+
startTime: INSERT_MS_EPOCH_TIMESTAMP
331+
}
332+
query: "user = 'Test User'"
348333
}
334+
) {
335+
results {
336+
version
337+
entityGuid
338+
timestamp
339+
changelog
340+
commit
341+
deepLink
342+
deploymentId
343+
description
344+
deploymentType
345+
groupId
346+
user
349347
}
348+
}
350349
}
351-
}
350+
}
351+
}
352352
```
353353

354354
</Collapser>
@@ -361,35 +361,36 @@ Use these examples in the [NerdGraph explorer](/docs/apis/nerdgraph/get-started/
361361

362362

363363
```graphql
364-
{
365-
actor {
366-
entity(guid: "INSERT_YOUR_GUID_HERE") {
367-
deploymentSearch(
368-
filter: {
369-
timeWindow: {
370-
endTime: INSERT_MS_EPOCH_TIMESTAMP,
371-
startTime: INSERT_MS_EPOCH_TIMESTAMP
372-
},
373-
query: "((user = 'Test User' AND version = '1.0') OR deploymentType in ('BLUE_GREEN', 'CANARY'))", limit: 200
374-
}
375-
) {
376-
results {
377-
changelog
378-
commit
379-
deepLink
380-
deploymentId
381-
deploymentType
382-
description
383-
entityGuid
384-
groupId
385-
timestamp
386-
user
387-
version
388-
}
364+
{
365+
actor {
366+
entity(guid: "INSERT_YOUR_GUID_HERE") {
367+
deploymentSearch(
368+
filter: {
369+
timeWindow: {
370+
endTime: INSERT_MS_EPOCH_TIMESTAMP
371+
startTime: INSERT_MS_EPOCH_TIMESTAMP
372+
}
373+
query: "((user = 'Test User' AND version = '1.0') OR deploymentType IN ('BLUE_GREEN', 'CANARY'))"
374+
limit: 200
389375
}
376+
) {
377+
results {
378+
changelog
379+
commit
380+
deepLink
381+
deploymentId
382+
deploymentType
383+
description
384+
entityGuid
385+
groupId
386+
timestamp
387+
user
388+
version
390389
}
390+
}
391391
}
392-
}
392+
}
393+
}
393394
```
394395

395396
</Collapser>

src/content/docs/errors-inbox/browser-tab.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,3 +168,11 @@ For some older browsers, the following errors may be unavailable:
168168
* Errors thrown from third-party scripts that reside on another domain are not available.
169169
* Errors occurring on older browsers: These may not be able to provide a usable stack trace. In some cases, they may not provide a stack trace at all.
170170
Error collection is done by wrapping JavaScript functions, so errors thrown by the browser at a lower level (such as [cross-origin resource sharing](http://en.wikipedia.org/wiki/Cross-origin_resource_sharing) errors) also are not available.
171+
172+
## SecurityPolicyViolation events (CSP violations) [#policy-violations]
173+
174+
New Relic captures the `securitypolicyviolation` event emitted by browsers and reports any such occurrences. However, this begins in agent version 1.313.0 and is not yet integrated into the UI such as the Errors Inbox view.
175+
Therefore, this data is only available through NRQL at this time. See the [attribute dictionary event](/attribute-dictionary/?event=SecurityPolicyViolation) for a list of reported attributes.
176+
```sql
177+
SELECT * FROM SecurityPolicyViolation ...
178+
```

0 commit comments

Comments
 (0)