Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2a1ad38
Restructure Synthetic Monitoring API doc
PallaviWrite Sep 4, 2025
00e0ffe
Update nerdgraph-synthetics-tutorial.mdx
PallaviWrite Sep 30, 2025
e4c1378
Improve language clarity in NerdGraph synthetics tutorial
PallaviWrite Oct 13, 2025
1e92c12
Updated Manage your secure credentials section
PallaviWrite Oct 15, 2025
eb4e0da
updated manage monitor your downtimes section
PallaviWrite Oct 15, 2025
da3e77b
Update nerdgraph-synthetics-tutorial.mdx
PallaviWrite Nov 13, 2025
2b553ea
removed repetitive content
PallaviWrite Nov 18, 2025
ca71ded
wip
PallaviWrite Nov 18, 2025
eccd8c1
added all monitor types under synthetics api
PallaviWrite Nov 27, 2025
0a4c3a9
Added upgrade monitor run time
PallaviWrite Nov 27, 2025
ac39194
Added downgrade a scripted monitor
PallaviWrite Nov 27, 2025
a7be034
Added private locations and Downgrade a scripted API monitor's runtime
PallaviWrite Nov 27, 2025
e1ab2e9
Added secure credentials section
PallaviWrite Nov 27, 2025
0d60383
Added Monitor downtimes section
PallaviWrite Nov 27, 2025
86a6380
Added queries section
PallaviWrite Nov 28, 2025
d95e785
Updated get-started with overview
PallaviWrite Nov 28, 2025
664283d
Changed queries file to query-synthetics-data
PallaviWrite Nov 28, 2025
d65d5f4
Added left nav
PallaviWrite Nov 28, 2025
73e958b
Updated overview file
PallaviWrite Nov 28, 2025
c6bd21c
updated links for account id and guid for ping
PallaviWrite Nov 28, 2025
0aef163
Added account id and guid links
PallaviWrite Nov 28, 2025
da6f4a8
updated links for account id and guid
PallaviWrite Dec 1, 2025
fb0362e
updated links for private locations
PallaviWrite Dec 1, 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
Prev Previous commit
Next Next commit
updated links for account id and guid for ping
  • Loading branch information
PallaviWrite committed Nov 28, 2025
commit c6bd21c99553b119af34fe51eff40eac51487b61
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ You can create a ping monitor using the `syntheticsCreateSimpleMonitor` mutation
<td>`accountId`</td>
<td>Integer</td>
<td>Yes</td>
<td>Your New Relic account ID where the monitor will be created.</td>
<td>Your New Relic [account ID](/docs/accounts/accounts-billing/account-structure/account-id) where the monitor will be created.</td>
</tr>
<tr>
<td>`monitor.locations.public`</td>
Expand Down Expand Up @@ -134,6 +134,8 @@ If there are any issues creating the monitor, the `errors` array will contain ob

You can update an existing ping monitor using the `syntheticsUpdateSimpleMonitor` mutation. This allows you to modify the configuration of a ping monitor that has already been created.

To update a monitor, you'll need its entity GUID. You can obtain this by [querying your monitors](/docs/apis/nerdgraph/examples/synthetics-api/query-synthetics-data#query-monitors) or viewing the monitor's metadata in the UI.

### Input parameters

<table>
Expand All @@ -150,7 +152,7 @@ You can update an existing ping monitor using the `syntheticsUpdateSimpleMonitor
<td>`guid`</td>
<td>String</td>
<td>Yes</td>
<td>The unique entity GUID of the monitor you want to update.</td>
<td>The unique entity [GUID](/docs/apis/nerdgraph/examples/synthetics-api/query-synthetics-data#query-monitors) of the monitor you want to update.</td>
</tr>
<tr>
<td>`monitor.locations.public`</td>
Expand Down Expand Up @@ -287,7 +289,7 @@ This API allows you to delete an existing monitor using the `syntheticsDeleteMon
<td>`guid`</td>
<td>String</td>
<td>Yes</td>
<td>The unique entity GUID of the monitor you want to delete.</td>
<td>The unique entity [GUID](/docs/apis/nerdgraph/examples/synthetics-api/query-synthetics-data#query-monitors) of the monitor you want to delete.</td>
</tr>
</tbody>
</table>
Expand Down
Loading