Skip to content

Commit

Permalink
Merge branch 'develop' into translations-96099979
Browse files Browse the repository at this point in the history
  • Loading branch information
tabathadelane committed May 10, 2024
2 parents 31e8660 + c35af0e commit 258c867
Show file tree
Hide file tree
Showing 45 changed files with 1,623 additions and 1,287 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ These permissions pertain to [<InlinePopover type="browser" />](/docs/browser/br
* <DoNotTranslate>**Application settings**</DoNotTranslate>: relates to browser application settings.
* <DoNotTranslate>**Domain conditions**</DoNotTranslate>: relates to [browser domain conditions](/docs/browser/new-relic-browser/configuration/monitor-or-block-specific-domains-subdomains).
* <DoNotTranslate>**Segment allow lists**</DoNotTranslate>: relates to segmenting [allow lists](/docs/browser/new-relic-browser/configuration/group-browser-metrics-urls).
* <DoNotTranslate>**View session replays**</DoNotTranslate>: relates to viewing replays [allow lists](/docs/browser/browser-monitoring/browser-pro-features/session-replay).

</Collapser>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,15 +280,18 @@ mutation {

## Update a workflow [#update-workflow]

When you update a workflow, note the only mandatory attributes you need to supply are the workflow ID and account ID. The rest are optional. For example, you only need to supply the name if you only intend to update the name.
When you update a workflow, note the only mandatory attributes you need to supply are the `accountId` under `aiWorkflowsUpdateWorkflow` and the `id` of the workflow under `updateWorkflowData`. The rest are optional. For example, you only need to supply the name if you only intend to update the name.

To get the workflow ID, go to the workflow table and click <DoNotTranslate>**...**</DoNotTranslate> at the end of the row. Then, choose <DoNotTranslate>**Copy workflow id to clipboard**</DoNotTranslate>.
To get the workflow ID, go to the workflow table and click the <DoNotTranslate>**<Icon name="fe-more-horizontal"/>**</DoNotTranslate> icon at the end of the row. Then, choose <DoNotTranslate>**Copy workflow id to clipboard**</DoNotTranslate>.

Here's an example of updating a workflow:
Here's an example of updating a workflow's name and two channels:

```graphql
mutation {
aiWorkflowsUpdateWorkflow(accountId: YOUR_ACCOUNT_ID, updateWorkflowData: {name: "UPDATED_API_DEMO_WORKFLOW", id: WORKFLOW_ID}) {
aiWorkflowsUpdateWorkflow(
accountId: YOUR_ACCOUNT_ID
updateWorkflowData: { name: "UPDATED_WORKFLOW_NAME", id: WORKFLOW_ID, destinationConfigurations:[{channelId: "12345abc-6de7-8f90-g123-4h56i78j9klm", notificationTriggers: [ACTIVATED]}, {channelId: "zy0987xw-v65u-432t-10s9-r876qpo543n2", notificationTriggers: [ACTIVATED]}]}
) {
workflow {
id
name
Expand Down Expand Up @@ -362,4 +365,3 @@ mutation {
}
}
```

Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ To use the SonarQube integration, you need to also [install our JMX monitoring i
integrations:
- name: nri-jmx
env:
COLLECTION_FILES: /etc/newrelic-infra/integrations.d/jmx-sonarqube-web-config.yml
COLLECTION_FILES: /etc/newrelic-infra/integrations.d/jvm-sonarqube-compute-engine-metrics.yml
JMX_HOST: <YOUR_HOST>
JMX_PASS: admin
JMX_PORT: 9010
Expand All @@ -199,7 +199,7 @@ To use the SonarQube integration, you need to also [install our JMX monitoring i
integrations:
- name: nri-jmx
env:
COLLECTION_FILES: /etc/newrelic-infra/integrations.d/jmx-sonarqube-compute-engine-config.yml
COLLECTION_FILES: /etc/newrelic-infra/integrations.d/jvm-sonarqube-web-metrics.yml
JMX_HOST: <YOUR_HOST>
JMX_PASS: admin
JMX_PORT: 9011
Expand Down

0 comments on commit 258c867

Please sign in to comment.