Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Daily release 01 22 25 morning #19763

Merged
merged 27 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f07c691
docs(NR-290692): add clarifying verbiage on how markers are included …
newer-relic Dec 4, 2024
71c5832
docs(NR-290692): update docs around how markers are included on NRQL …
newer-relic Dec 4, 2024
37c9b0e
docs(NR-290692): clarify how to examine query for a chart
newer-relic Dec 5, 2024
71b49e0
docs(NR-290692): add explainer for "How markers are selected for incl…
newer-relic Jan 10, 2025
1be46bd
chore: add translations
svc-docs-eng-opensource-bot Jan 17, 2025
faac4a1
verify mdx fix
akashreddy-nr Jan 20, 2025
e39b23c
chore(whats-new-ids): updated ids
svc-docs-eng-opensource-bot Jan 20, 2025
3b6b026
Merge pull request #19758 from newrelic/whats-new-id-e39b23c7
adutta-newrelic Jan 20, 2025
1cff305
chore: infra-agent 1.60.0 release doc and fixe 1.56.0 doc
alvarocabanas Jan 20, 2025
4b3dba2
Update snmp-performance-monitoring.mdx
mmoumene Jan 20, 2025
dde0757
chore: moved line highlighting to allow syntax highlighting
brnhensley Jan 20, 2025
02027f8
chore: add syntax highlighting
brnhensley Jan 20, 2025
f7da4fe
fix: JSON -> json (it's case sensitive)
brnhensley Jan 20, 2025
6f0c299
fix: codeblock & add formatting
brnhensley Jan 20, 2025
c3d509f
chore: add syntax highlighting
brnhensley Jan 20, 2025
f5d0eab
chore: format grapql, replace `<var_name>` with `VAR_NAME`
brnhensley Jan 20, 2025
96c5dbd
chore: format code
brnhensley Jan 20, 2025
2b34679
chore: formatting & syntax highlighting
brnhensley Jan 20, 2025
7b7004f
Update change-tracking-view-analyze.mdx
adutta-newrelic Jan 21, 2025
28bcbc1
Update change-tracking-view-analyze.mdx
adutta-newrelic Jan 21, 2025
ea19dcb
Merge pull request #19391 from newer-relic/NR-290692
adutta-newrelic Jan 21, 2025
c763d0e
Merge pull request #19756 from alvarocabanas/develop
adutta-newrelic Jan 21, 2025
8375d2e
Merge pull request #19737 from newrelic/translations-1be46bdf
akashreddy-nr Jan 21, 2025
405ad22
Merge pull request #19760 from brnhensley/patch-9
adutta-newrelic Jan 21, 2025
6462f59
feat: Add release notes for Kubernetes integration v3.33.0
NewRelic-K8s-Agents-Bot Jan 21, 2025
5d31bd4
Merge pull request #19759 from mmoumene/patch-1
adutta-newrelic Jan 21, 2025
0144763
Merge pull request #19761 from NewRelic-K8s-Agents-Bot/add_kubernetes…
adutta-newrelic Jan 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ To do so:

Use the following query to retrieve a list of your existing dashboards:

```
```graphql
{
actor {
entitySearch(queryBuilder: {type: DASHBOARD}) {
Expand All @@ -47,10 +47,10 @@ Use the following query to retrieve a list of your existing dashboards:

Use the following query to export, then extract the dashboard's entity information from the output:

```
```graphql
{
actor {
entity(guid: "your_guid_xxxxxxx") {
entity(guid: "YOUR_DASHBOARD_GUID") {
... on DashboardEntity {
name
permissions
Expand Down Expand Up @@ -81,9 +81,9 @@ Example entity information in GraphiQL output:

Use the following mutation to import the dashboard into another account:

```
```graphql
mutation create($dashboard: DashboardInput!) {
dashboardCreate(accountId: your_new_AccountID, dashboard: $dashboard) {
dashboardCreate(accountId: YOUR_NEW_ACCOUNT_ID, dashboard: $dashboard) {
entityResult {
guid
name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ Here's an example of how to create an account. Before creating an account, make

```graphql
mutation {
accountManagementCreateAccount(managedAccount: {name: "NEW_ACCOUNT_NAME"}) {
accountManagementCreateAccount(
managedAccount: {name: "NEW_ACCOUNT_NAME"}
) {
managedAccount {
id
name
Expand All @@ -75,7 +77,9 @@ If you have a complex account structure you may use the optional `regionCode` pa

```graphql
mutation {
accountManagementCreateAccount(managedAccount: {name: "NEW_ACCOUNT_NAME", regionCode: "eu01"}) {
accountManagementCreateAccount(
managedAccount: { name: "NEW_ACCOUNT_NAME", regionCode: "eu01" }
) {
managedAccount {
id
name
Expand All @@ -91,7 +95,9 @@ Here's an example of how to rename an account.

```graphql
mutation {
accountManagementUpdateAccount(managedAccount: {name: "UPDATED_ACCOUNT_NAME", id: 101010101}) {
accountManagementUpdateAccount(
managedAccount: { name: "UPDATED_ACCOUNT_NAME", id: 101010101 }
) {
managedAccount {
id
name
Expand Down Expand Up @@ -146,9 +152,10 @@ Here are some errors and what they mean:
<tbody>
<tr>
<td>
```"unauthorized", {
extensions: { nerdGraphExtensions: { errorClass: "ACCESS_DENIED" } }
}
```
"unauthorized", {
extensions: { nerdGraphExtensions: { errorClass: "ACCESS_DENIED" } }
}
```
</td>

Expand All @@ -160,9 +167,9 @@ Here are some errors and what they mean:
<tr>
<td>
```
cannot create subaccount -- multiple parent account ids found. Please use Partnership API.", {
extensions: { nerdGraphExtensions: { errorClass: "SERVER_ERROR" } }
}
"cannot create subaccount -- multiple parent account ids found. Please use Partnership API.", {
extensions: { nerdGraphExtensions: { errorClass: "SERVER_ERROR" } }
}
```
</td>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To do so:

Use the following query to retrieve a list of existing live chart URLs:

```
```graphql
{
actor {
dashboard {
Expand All @@ -48,9 +48,9 @@ Use the following query to retrieve a list of existing live chart URLs:

Use the following query to revoke the live chart URL you specify:

```
```graphql
mutation {
dashboardWidgetRevokeLiveUrl(uuid: "<enter-the-UUID-of-the-live-chart>") {
dashboardWidgetRevokeLiveUrl(uuid: "LIVE_CHART_UUID") {
uuid
errors {
description
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,15 @@ mutation CreateExampleMobileApplication($accountId: Int!, $name: String!) {
name
}
}

```

Variables:

```JSON
```json
{
"accountId": Int!,
"name": String!
}

```

## Retrieving the application token [#get-mobile-token]
Expand All @@ -63,7 +61,7 @@ query FetchMobileApplicationToken($guid: EntityGuid!) {

Variables:

```JSON
```json
{
"guid": EntityGuid!
}
Expand All @@ -76,7 +74,10 @@ Here's an example mutation that changes the name of your mobile app in New Relic
Mutation:

```graphql
mutation UpdateMobileApplicationAlias($guid: EntityGuid!, $settings: $AgentApplicationSettingsUpdateInput) {
mutation UpdateMobileApplicationAlias(
$guid: EntityGuid!,
$settings: $AgentApplicationSettingsUpdateInput
) {
agentApplicationSettingsUpdate(guid: $guid, settings: $settings) {
alias
guid
Expand All @@ -91,7 +92,7 @@ mutation UpdateMobileApplicationAlias($guid: EntityGuid!, $settings: $AgentAppli

Variables:

```JSON
```json
{
"guid": EntityGuid!,
"settings": {
Expand All @@ -107,7 +108,10 @@ Here's an example of how to configure <InlinePopover type="mobile"/> settings vi
Mutation:

```graphql
mutation UpdateMobileSettingsExample($guid: EntityGuid!, $settings: AgentApplicationSettingsUpdateInput!) {
mutation UpdateMobileSettingsExample(
$guid: EntityGuid!
$settings: AgentApplicationSettingsUpdateInput!
) {
agentApplicationSettingsUpdate(guid: $guid, settings: $settings) {
guid
errors {
Expand Down Expand Up @@ -138,7 +142,7 @@ mutation UpdateMobileSettingsExample($guid: EntityGuid!, $settings: AgentApplica

Variables:

```JSON
```json
{
"guid": EntityGuid!,
"settings": {
Expand Down
Loading
Loading