meraki_config.monitor_devices |
|
@@ -1522,7 +1487,7 @@ global:
meraki_config.preferences.device_status_only |
|
true | false (Default: false) |
- Used in combination with `monitor_devices` to restrict polling to only status information. *(This is helpful in large organizations to prevent timeout issues)*. |
+ *Required* when using `monitor_devices: true` to restrict polling to only status information. **(This is used to prevent timeout issues.)** |
`-v`
diff --git a/src/content/docs/new-relic-solutions/solve-common-issues/diagnostics-cli-nrdiag/run-diagnostics-cli-nrdiag.mdx b/src/content/docs/new-relic-solutions/solve-common-issues/diagnostics-cli-nrdiag/run-diagnostics-cli-nrdiag.mdx
index a3e25de123e..5e5686b5659 100644
--- a/src/content/docs/new-relic-solutions/solve-common-issues/diagnostics-cli-nrdiag/run-diagnostics-cli-nrdiag.mdx
+++ b/src/content/docs/new-relic-solutions/solve-common-issues/diagnostics-cli-nrdiag/run-diagnostics-cli-nrdiag.mdx
@@ -208,9 +208,90 @@ To run from PowerShell, add `./` to the start of `cmd`.
* For ARM64 systems:
```
- nrdiag_arm64 -suites SUITE NAMES
+ nrdiag_arm64.exe -suites SUITE NAMES
```
+## Scripts [#scripts]
+
+Scripts provide an additional datasource for information that isn't collected by a task. The catalog of available scripts can be found in [the Diagnostic CLI's github repository](https://github.com/newrelic/newrelic-diagnostics-cli/tree/main/scriptcatalog).
+
+### Script output
+
+Script output is printed to the screen and is saved in a file based on the name of the script (for example, `name-of-script.out`). This is saved in the directory specified by `-output-path`, defaulting to the current directory.
+
+Scripts can also output files, either to the current working directory or the directory specified by `-output-path`. All output files are included in the results zip in the `ScriptOutput/` directory.
+
+### Script results
+
+The results of running a script can be found in the `nrdiag-output.json` file with the following schema:
+
+```json
+"Script": {
+ "Name": "example",
+ "Description": "Example Description",
+ "Output": "example output",
+ "OutputFiles": [
+ "/path/to/example.out",
+ "/path/to/another-file.out"
+ ],
+ "OutputTruncated": false
+}
+```
+
+The `Output` field contains the stdout output. If it is over 20000 characters, it is truncated and the `OutputTruncated` field is set to `true`. Even if trucated, the full output is still available in the `ScriptOutput/` directory in the zip file.
+
+A list of files the script created can be found in the `Outputfiles` field.
+
+### List, view, and run a script [#list-view-run-script]
+
+
+
+ To view a list of the scripts available to run, use `-list-scripts`:
+ ```
+ ./nrdiag -list-scripts
+ ```
+
+
+ To view a script without running it:
+ ```
+ ./nrdiag -script SCRIPT_NAME
+ ```
+
+
+ To run a script:
+ ```
+ ./nrdiag -script SCRIPT_NAME -run
+ ```
+
+
+ To run a script with arguments:
+ ```
+ ./nrdiag -script SCRIPT_NAME -run -script-flags "-foo bar"
+ ```
+
+
+ To run a script and suites at the same time:
+ ```
+ ./nrdiag -script SCRIPT_NAME -run -s SUITE NAMES"
+ ```
+
+
+
## Include additional files in the zip [#include-additional-files]
If you have additional files that you would like to share with support, you can include them in the `nrdiag-output.zip` file using the `-include` command line flag. This can be used with a single file or a directory. If a directory is provided, all of its subdirectories are included. The total size limit of the files included is 4GB.
@@ -237,7 +318,7 @@ To run from PowerShell, add `./` to the start of `cmd`.
* For 32-bit systems:
```
- nrdiag -include Path\To\File -attach
+ nrdiag.exe -include Path\To\File -attach
```
* For 64-bit systems:
@@ -306,7 +387,7 @@ Uploading your results to an account will automatically upload the contents of t
OR
```
- nrdiag -api-key ${API_KEY}
+ nrdiag.exe -api-key ${API_KEY}
```
* For 64-bit systems:
@@ -317,7 +398,7 @@ Uploading your results to an account will automatically upload the contents of t
OR
```
- nrdiag_x64 -api-key ${API_KEY}
+ nrdiag_x64.exe -api-key ${API_KEY}
```
* For ARM64 systems:
@@ -328,7 +409,7 @@ Uploading your results to an account will automatically upload the contents of t
OR
```
- nrdiag_arm64 -api-key ${API_KEY}
+ nrdiag_arm64.exe -api-key ${API_KEY}
```
diff --git a/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-251.mdx b/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-251.mdx
index 4070e1184df..966a2752dba 100644
--- a/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-251.mdx
+++ b/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-251.mdx
@@ -2,7 +2,6 @@
subject: Diagnostics CLI (nrdiag)
releaseDate: '2023-05-24'
version: 2.5.1
-downloadLink: 'https://download.newrelic.com/nrdiag/nrdiag_2.5.1.zip'
---
## Changes
diff --git a/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-261.mdx b/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-261.mdx
index b5097c23c2e..0f5a7220a2b 100644
--- a/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-261.mdx
+++ b/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-261.mdx
@@ -2,7 +2,6 @@
subject: Diagnostics CLI (nrdiag)
releaseDate: '2023-07-11'
version: 2.6.1
-downloadLink: 'https://download.newrelic.com/nrdiag/nrdiag_2.6.1.zip'
---
## Changes
diff --git a/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-262.mdx b/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-262.mdx
index f5e73bf3751..e1705ff2712 100644
--- a/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-262.mdx
+++ b/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-262.mdx
@@ -2,7 +2,6 @@
subject: Diagnostics CLI (nrdiag)
releaseDate: '2023-07-17'
version: 2.6.2
-downloadLink: 'https://download.newrelic.com/nrdiag/nrdiag_2.6.2.zip'
---
## Changes
diff --git a/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-310.mdx b/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-310.mdx
new file mode 100644
index 00000000000..91f9a99bd85
--- /dev/null
+++ b/src/content/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-310.mdx
@@ -0,0 +1,16 @@
+---
+subject: Diagnostics CLI (nrdiag)
+releaseDate: '2023-09-05'
+version: 3.1.0
+downloadLink: 'https://download.newrelic.com/nrdiag/nrdiag_3.1.0.zip'
+---
+
+## New Feature
+- The CLI now supports running scripts to gather additional output that isn't currently collected by a task. For more information, please see the [Run the Diagnostics CLI documentation](https://docs.newrelic.com/docs/new-relic-solutions/solve-common-issues/diagnostics-cli-nrdiag/run-diagnostics-cli-nrdiag/#scripts). ([#182](https://github.com/newrelic/newrelic-diagnostics-cli/pull/182), [#185](https://github.com/newrelic/newrelic-diagnostics-cli/pull/185))
+
+## Task updates
+- Updated Hotspot versions supported by the Java APM agent. ([#183](https://github.com/newrelic/newrelic-diagnostics-cli/pull/183))
+
+## Fixes
+- Fixed an issue when using `-output-path` where the `nrdiag-filelist.txt` and `nrdiag-output.json` files were not included in the `nrdiag-output.zip`. ([#187](https://github.com/newrelic/newrelic-diagnostics-cli/pull/187))
+- Fixed an issue that prevented some logs from being included in the zip. ([#188](https://github.com/newrelic/newrelic-diagnostics-cli/pull/188))
diff --git a/src/content/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5703.mdx b/src/content/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5703.mdx
new file mode 100644
index 00000000000..8be4583aba1
--- /dev/null
+++ b/src/content/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5703.mdx
@@ -0,0 +1,11 @@
+---
+subject: Mobile app for Android
+releaseDate: '2023-09-05'
+version: 5.7.3
+downloadLink: 'https://play.google.com/store/apps/details?id=com.newrelic.rpm'
+---
+
+### Notes
+
+* Support for new SLA Details screen
+* Fixes login issues for some users
diff --git a/src/content/docs/service-level-management/create-slm.mdx b/src/content/docs/service-level-management/create-slm.mdx
index 4a25d5baa3f..1804c10e46c 100644
--- a/src/content/docs/service-level-management/create-slm.mdx
+++ b/src/content/docs/service-level-management/create-slm.mdx
@@ -134,7 +134,7 @@ Based on `Transaction` events, these SLIs are the most common for request-driven
```sql
FROM: TransactionError
- WHERE: entityGuid = '{entityGuid}' AND error.expected IS FALSE
+ WHERE: entityGuid = '{entityGuid}' AND error.expected != true
```
Where `{entityGuid}` is the service's GUID.
diff --git a/src/nav/accounts.yml b/src/nav/accounts.yml
index 05dc0579ee0..ddb5f71ff1f 100644
--- a/src/nav/accounts.yml
+++ b/src/nav/accounts.yml
@@ -18,7 +18,7 @@ pages:
- title: Login troubleshooting
path: /docs/accounts/accounts-billing/account-setup/troubleshoot-new-relics-password-email-address-login-problems
- title: Users with multiple user records
- path: /docs/accounts/accounts-billing/account-setup/multiple-logins-found
+ path: /docs/accounts/accounts-billing/account-setup/multiple-user-records
- title: Email domain capture
path: /docs/accounts/accounts-billing/account-setup/domain-capture
- title: Account structure
diff --git a/src/nav/infrastructure.yml b/src/nav/infrastructure.yml
index 5a9c0e8cea9..5721ccd3b04 100644
--- a/src/nav/infrastructure.yml
+++ b/src/nav/infrastructure.yml
@@ -317,8 +317,6 @@ pages:
pages:
- title: Infrastructure integration alert threshold
path: /docs/infrastructure/amazon-integrations/troubleshooting/cannot-create-alert-condition-infrastructure-integration
- - title: No data appears
- path: /docs/infrastructure/host-integrations/troubleshooting/not-seeing-host-integration-data
- title: Pass infrastructure parameters to integration
path: /docs/infrastructure/host-integrations/troubleshooting/pass-infrastructure-agent-parameters-host-integration
- title: Run integrations manually
|