You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/alerts/monitors/create-monitor.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,14 @@ Our alerts use machine learning to analyze historical data, establish baselines,
13
13
14
14
Integrated playbooks automate incident response by gathering diagnostics, notifying teams, triggering recovery actions, and streamlining workflows to improve response times. You can link playbooks to monitors to automate tasks such as restarting services or scaling infrastructure, ensuring swift and efficient anomaly resolution.
15
15
16
+
import TerraformLink from '../../reuse/terraform-link.md';
17
+
18
+
:::tip
19
+
You can use Terraform to manage monitors with the [`sumologic_monitor`](https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs/resources/monitor) and [`sumologic_monitor_folder`](https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs/resources/monitor_folder) resources.
20
+
21
+
<TerraformLink/>
22
+
:::
23
+
16
24
## Open the New Monitor window
17
25
18
26
There are several ways to create a new monitor, depending on where you are in Sumo Logic.
Copy file name to clipboardExpand all lines: docs/alerts/monitors/muting-schedules.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,14 @@ Setting a **Muting Schedule** allows you to pause alert notifications from monit
11
11
***Planned System Maintenance**. During system maintenance, notifications can get triggered because your application and infrastructure are being brought up or turned off. Such notifications are known false alarms and should be ignored.
12
12
***Off-Business Hours**. If your monitors reflect performance thresholds that are only applicable during business hours, such monitors might generate false alarms during off-business hours.
13
13
14
+
import TerraformLink from '../../reuse/terraform-link.md';
15
+
16
+
:::tip
17
+
You can use Terraform to manage muting schedules with the [`sumologic_muting_schedule`](https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs/resources/muting_schedule) resource.
18
+
19
+
<TerraformLink/>
20
+
:::
21
+
14
22
## Prerequisites
15
23
Make sure you've enabled the [**View Muting Schedules**](/docs/manage/users-roles/roles/role-capabilities/#alerting) and [**Manage Muting Schedules**](/docs/manage/users-roles/roles/role-capabilities/#alerting) user permissions, which allow you to define and edit a muting schedule.
Copy file name to clipboardExpand all lines: docs/alerts/scheduled-searches/schedule-search.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,14 @@ This article outlines the process of creating a Scheduled Search, which is essen
10
10
11
11
To run a Scheduled Search using receipt time, save the search with receipt time enabled.
12
12
13
+
import TerraformLink from '../../reuse/terraform-link.md';
14
+
15
+
:::tip
16
+
You can use Terraform to manage content such as scheduled searches with the [`sumologic_content`](https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs/resources/content) resource.
17
+
18
+
<TerraformLink/>
19
+
:::
20
+
13
21
## Create a Scheduled Search
14
22
15
23
This section describes how to create a Scheduled Search at the time you save a search. You can also edit a saved search later to add a schedule.
Copy file name to clipboardExpand all lines: docs/alerts/webhook-connections/set-up-webhook-connections.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,14 @@ Most services with a REST API should allow you to create a connection using the
23
23
If a scheduled search fails or times out, no data will be sent via webhook. In this case, you won’t see any notifications in the app you’ve configured to receive data.
24
24
:::
25
25
26
+
import TerraformLink from '../../reuse/terraform-link.md';
27
+
28
+
:::tip
29
+
You can use Terraform to manage webhook connections with the [`sumologic_connection`](https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs/resources/connection) resource.
30
+
31
+
<TerraformLink/>
32
+
:::
33
+
26
34
## Set up a webhook connection
27
35
28
36
The first step in integrating webhooks with Sumo Logic is to configure one or more connections, which are HTTP endpoints that tell Sumo Logic where to send data. You can set up any number of connections, depending on your organization's needs.
@@ -11,15 +11,132 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
11
11
12
12
## What is Terraform?
13
13
14
-
[Terraform](https://developer.hashicorp.com/terraform) is an "infrastructure as code" tool developed by Hashicorp. Terraform scripts are used to define both cloud and on-prem resources in human-readable configuration files. Using Terraform scripts makes it easier for system administrators to provision and manage infrastructure and system resources consistently and reliably. The Terraform community, including Sumo Logic, supports Terraform through providers and APIs allowing applications to install and manage different types of resources and services from different vendors in one workflow. See the [Terraform Sumo Logic provider](https://registry.terraform.io/namespaces/SumoLogic).
15
-
16
-
## Sumo Logic use cases
17
-
18
-
You can use Terraform to manage all sorts of Sumo Logic resources. Here are some use cases:
[Terraform](https://developer.hashicorp.com/terraform) is an "infrastructure as code" tool developed by Hashicorp. Terraform scripts are used to define both cloud and on-prem resources in human-readable configuration files. Using Terraform scripts makes it easier for system administrators to provision and manage infrastructure and system resources consistently and reliably. The Terraform community, including Sumo Logic, supports Terraform through providers and APIs allowing applications to install and manage different types of resources and services from different vendors in one workflow. See the [Terraform Sumo Logic provider](https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs).
15
+
16
+
## Sumo Logic Terraform resources
17
+
18
+
You can use Terraform resources to manage all sorts of Sumo Logic components. Following are some examples.
A *provider* is a Terraform module or plugin developed by a vendor that defines which vendor resources are available for Terraform to create and manage. Sumo Logic has an established Terraform provider plugin, as does AWS and other major cloud vendors. The Terraform script section defining the provider for resources defined by other parts of the script might look like this:
213
+
A *provider* is a Terraform module or plugin developed by a vendor that defines which vendor resources are available for Terraform to create and manage. For information about the Sumo Logic provider, see the [Sumo Logic Provider documentation](https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs).
214
+
215
+
Sumo Logic has an established Terraform provider plugin, as does AWS and other major cloud vendors. The Terraform script section defining the provider for resources defined by other parts of the script might look like this:
97
216
98
217
```
99
218
provider "aws" {
@@ -119,7 +238,9 @@ terraform {
119
238
120
239
### Terraform resources
121
240
122
-
A *resource* is an infrastructure element that can be defined and created from the available resources produced by the provider. A resource definition will look similar in form to the provider definition:
241
+
A *resource* is an infrastructure element that can be defined and created from the available resources produced by the provider. For available resources, see the [Sumo Logic Provider documentation](https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs).
242
+
243
+
A resource definition will look similar in form to the provider definition:
Copy file name to clipboardExpand all lines: docs/apm/real-user-monitoring/configure-data-collection.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,14 @@ To utilize XHR and navigation/route changes, and errors collection, you must use
33
33
34
34
For full end-to-end visibility, we recommended supplementing your RUM browser auto-instrumentation with the appropriate [back-end tracing instrumentation](/docs/apm/traces/get-started-transaction-tracing).
35
35
36
+
import TerraformLink from '../../reuse/terraform-link.md';
37
+
38
+
:::tip
39
+
You can use Terraform to provide a RUM source with the [`sumologic_rum_source`](https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs/resources/rum_source) resource.
0 commit comments