From fbf50070e374908eab5b4106745898063a1bdfe8 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Fri, 13 Dec 2024 12:54:06 +0530 Subject: [PATCH 01/21] SUMO-251500: Adding monitor's information to OTEL Apps Set2 --- .../opentelemetry/couchbase-opentelemetry.md | 17 +++++++++++++++++ .../opentelemetry/mariadb-opentelemetry.md | 16 ++++++++++++++++ .../sql-server-linux-opentelemetry.md | 18 ++++++++++++++++++ .../opentelemetry/squid-proxy-opentelemetry.md | 15 +++++++++++++++ .../opentelemetry/varnish-opentelemetry.md | 14 ++++++++++++++ 5 files changed, 80 insertions(+) diff --git a/docs/integrations/databases/opentelemetry/couchbase-opentelemetry.md b/docs/integrations/databases/opentelemetry/couchbase-opentelemetry.md index 3b77df72c0..19a396556a 100644 --- a/docs/integrations/databases/opentelemetry/couchbase-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/couchbase-opentelemetry.md @@ -226,3 +226,20 @@ Use this dashboard to: - To understand user behavior accessing clusters and servers through Rest API. Access + +## Create monitors for Couchbase app + +import CreateMonitors from '../../../reuse/apps/create-monitors.md'; + + + +### Couchbase alerts + +| Name | Description | Alert Condition | Recover Condition | +|:--|:--|:--|:--| +| `Couchbase - Bucket Not Ready` | This alert is triggered when a bucket in the Couchbase cluster is not ready. | Count `>` 0 | Count `<=` 0 | +| `Couchbase - High Latency HTTP Requests` | This alert is triggered on high average latency for HTTP requests to Couchbase | Count `>` 1000 | Count `<=` 1000 | +| `Couchbase - Node Down` | This alert is triggered when a node in the Couchbase cluster is down. | Count `>` 0 | Count `<=` 0 | +| `Couchbase - Node Not Respond` | This alert is triggered when a node in the Couchbase cluster does not respond too many times. | Count `>=` 10 | Count `<` 10 | +| `Couchbase - Too Many Error Queries on Buckets` | This alert is triggered when there are too many error queries on a bucket in a Couchbase cluster. | Count `>=` 1000 | Count `<` 1000 | +| `Couchbase - Too Many Login Failures` | This alert is triggered when there are too many login failures to a node in a Couchbase cluster. | Count `>=` 1000 | Count `<` 1000 | diff --git a/docs/integrations/databases/opentelemetry/mariadb-opentelemetry.md b/docs/integrations/databases/opentelemetry/mariadb-opentelemetry.md index d32ae03521..06585f3059 100644 --- a/docs/integrations/databases/opentelemetry/mariadb-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/mariadb-opentelemetry.md @@ -248,3 +248,19 @@ Use this dashboard to: - Examine slow query trends to determine if there are periodic performance bottlenecks in your database clusters. Slow Queries + +## Create monitors for MariaDB app + +import CreateMonitors from '../../../reuse/apps/create-monitors.md'; + + + +### MariaDB alerts + +| Name | Description | Alert Condition | Recover Condition | +|:--|:--|:--|:--| +| `MariaDB - Critical Errors` | This alert is triggered when there are critical database errors. | Count `>` 10 | Count `<=` 10 | +| `MariaDB - Excessive Slow Query Detected` | This alert is triggered when the average time to execute a query is more than 15 seconds for a 5 minute time interval. | Count `>=` 1 | Count `<` 1 | +| `MariaDB - Failed Login Attempts` | This alert is triggered when there are excessive failed login attempts in a short period. | Count `>=` 1 | Count `<` 1 | +| `MariaDB - Instance down` | This alert is triggered when we detect that a MariaDB instance is down | Count `>=` 1 | Count `<` 1 | +| `MariaDB - Replication Failure` | This alert is triggered when there are replication failures. | Count `>=` 1 | Count `<` 1 | diff --git a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md index 8afb1a434c..3c2af71a61 100644 --- a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md +++ b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md @@ -184,3 +184,21 @@ Use this dashboard to: - Monitor any errors and warnings. Operations + +## Create monitors for SQL Server Linux app + +import CreateMonitors from '../../../reuse/apps/create-monitors.md'; + + + +### SQL Server Linux alerts + +| Name | Description | Alert Condition | Recover Condition | +|:--|:--|:--|:--| +| `SQL Server - AppDomain` | This alert is triggered when we detect AppDomain related issues in your SQL Server instance. | Count `>=` 1 | Count `<` 1 | +| `SQL Server - Backup Fail` | This alert is triggered when we detect that the SQL Server backup failed. | Count `>=` 1 | Count `<` 1 | +| `SQL Server - Deadlock` | This alert is triggered when we detect deadlocks in a SQL Server instance. | Count `>` 5 | Count `<=` 5 | +| `SQL Server - Instance Down` | This alert is triggered when we detect that the SQL Server instance is down for 5 minutes. | Count `>` 0 | Count `<=` 0 | +| `SQL Server - Insufficient Space` | This alert is triggered when SQL Server instance could not allocate a new page for database because of insufficient disk space in filegroup. | Count `>` 0 | Count `<=` 0 | +| `SQL Server - Login Fail` | This alert is triggered when we detect that the user cannot login to SQL Server. | Count `>=` 1 | Count `<` 1 | +| `SQL Server - Mirroring Error` | This alert is triggered when we detect that the SQL Server mirroring has error. | Count `>=` 1 | Count `<` 1 | diff --git a/docs/integrations/web-servers/opentelemetry/squid-proxy-opentelemetry.md b/docs/integrations/web-servers/opentelemetry/squid-proxy-opentelemetry.md index 59d10c46e6..d9ac089241 100644 --- a/docs/integrations/web-servers/opentelemetry/squid-proxy-opentelemetry.md +++ b/docs/integrations/web-servers/opentelemetry/squid-proxy-opentelemetry.md @@ -194,3 +194,18 @@ The **The Squid Proxy - HTTP Response Analysis** dashboard provides insights int The **Squid Proxy - Quality of Service** dashboard provides insights into latency, the response time of requests according to HTTP action, and the response time according to location. Quality of Service + +## Create monitors for SquidProxy app + +import CreateMonitors from '../../../reuse/apps/create-monitors.md'; + + + +### SquidProxy alerts + +| Name | Description | Alert Condition | Recover Condition | +|:--|:--|:--|:--| +| `Squid Proxy - High Client (HTTP 4xx) Error Rate` | This alert is triggered when there are too many HTTP requests (>5%) with a response status of 4xx. | Count `>` 0 | Count `<=` 0 | +| `Squid Proxy - High Denied Request` | This alert is triggered when there are too many HTTP denied requests (>5%) | Count `>` 0 | Count `<=` 0 | +| `Squid Proxy - High Response Time` | This alert is triggered when requests are taking too long to process. | Count `>` 20 | Count `<=` 20 | +| `Squid Proxy - High Server (HTTP 5xx) Error Rate` | This alert is triggered when there are too many HTTP requests (>5%) with a response status of 5xx. | Count `>` 0 | Count `<=` 0 | diff --git a/docs/integrations/web-servers/opentelemetry/varnish-opentelemetry.md b/docs/integrations/web-servers/opentelemetry/varnish-opentelemetry.md index de1096d883..0c41e41381 100644 --- a/docs/integrations/web-servers/opentelemetry/varnish-opentelemetry.md +++ b/docs/integrations/web-servers/opentelemetry/varnish-opentelemetry.md @@ -184,3 +184,17 @@ The **Varnish - Visitor Traffic Insight** dashboard provides detailed informatio The **Varnish - Web Server Operations** dashboard provides a high-level view combined with detailed information on the top ten bots, geographic locations and data for clients with high error rates, server errors over time, and non 200 response code status codes. Dashboard panels also show information on server error logs, error log levels, error responses by server, and the top URIs responsible for 404 responses. Web Server Operations + +## Create monitors for Varnish app + +import CreateMonitors from '../../../reuse/apps/create-monitors.md'; + + + +### Varnish alerts + +| Name | Description | Alert Condition | Recover Condition | +|:--|:--|:--|:--| +| `Varnish - Access from Highly Malicious Sources` | This alert is triggered when Varnish is accessed from highly malicious IP addresses. | Count `>` 0 | Count `<=` 0 | +| `Varnish - High 4XX Error Rate` | This alert is triggered when there are too many HTTP requests (>5%) with a response status of 4xx. | Count `>` 5 | Count `<=` 5 | +| `Varnish - High 5XX Error Rate` | This alert is triggered when there are too many HTTP requests (>5%) with a response status of 5xx. | Count `>` 5 | Count `<=` 5 | From 0a44606bacc38b300515a6376b14400dc65eccda Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Mon, 16 Dec 2024 15:55:13 +0530 Subject: [PATCH 02/21] Adding Oracle and IIS10 Otel monitor info --- .../opentelemetry/oracle-opentelemetry.md | 23 +++++++++++++++++++ .../opentelemetry/iis-10-opentelemetry.md | 20 ++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md index f871182d15..8d7ce6ea6e 100644 --- a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md @@ -559,3 +559,26 @@ See information derived from the syslog audit trail, including successful and fa Monitor Performance by DB Script The Oracle - Performance Details dashboard gives insight about - count of rollback, commits, transaction, process, session. In addition to this it helps monitoring physical and logical reads, PGA allocated. This dashboard is based on the [metrics collected by Oracle DB opentelemetry receiver](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/receiver/oracledbreceiver/documentation.md). + +## Create monitors for Oracle app + +import CreateMonitors from '../../../reuse/apps/create-monitors.md'; + + + +### Oracle alerts + +| Name | Description | Alert Condition | Recover Condition | +|:--|:--|:--|:--| +| `Oracle - Admin Restricted Command Execution` | This alert is triggered when the Listener could not resolve a command. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Archival Log Creation` | This alert is triggered when there is an archive log creation error. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Block Corruption` | This alert is triggered when we detect corrupted data blocks. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Database Crash` | This alert is triggered when the database crashes. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Deadlock` | This alert is triggered when deadlocks are detected. | Count `>` 5 | Count `<=` 5 | +| `Oracle - Fatal NI Connect Error` | This alert is triggered when we detect a "Fatal NI connect error". | Count `>` 0 | Count `<=` 0 | +| `Oracle - Internal Errors` | This alert is triggered when internal errors are detected. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Login Fail` | This alert is triggered when we detect that a user cannot login. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Possible Inappropriate Activity` | This alert is triggered when we detect possible inappropriate activity. | Count `>` 0 | Count `<=` 0 | +| `Oracle - TNS Error` | This alert is triggered when we detect TNS operations errors. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Unable To Extend Tablespace` | This alert is triggered when we detect that we are unable to extend tablespaces. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Unauthorized Command Execution` | This alert is triggered when we detect that a user is not authorized to execute a requested listener command in a Oracle instance. | Count `>` 0 | Count `<=` 0 | diff --git a/docs/integrations/web-servers/opentelemetry/iis-10-opentelemetry.md b/docs/integrations/web-servers/opentelemetry/iis-10-opentelemetry.md index 11e9ade0f8..c299ae1163 100644 --- a/docs/integrations/web-servers/opentelemetry/iis-10-opentelemetry.md +++ b/docs/integrations/web-servers/opentelemetry/iis-10-opentelemetry.md @@ -318,3 +318,23 @@ The **IIS - Web Service** dashboard provides a high-level view of the Web Servic IIS-Web-Service +## Create monitors for IIS app + +import CreateMonitors from '../../../reuse/apps/create-monitors.md'; + + + +### IIS alerts + +| Name | Description | Alert Condition | Recover Condition | +|:--|:--|:--|:--| +| `IIS - Access from Highly Malicious Sources` | This alert is triggered when an IIS server is accessed from highly malicious IP addresses. | Count `>` 0 | Count `<=` 0 | +| `IIS - ASP.NET Application Errors` | This alert is triggered when we detect an error in the ASP.NET applications running on an IIS server. | Count `>` 0 | Count `<=` 0 | +| `IIS - Blocked Async IO Requests` | This alert is triggered when we detect that there are blocked async I/O requests on an IIS server. | Count `>` 0 | Count `<=` 0 | +| `IIS - Error Events` | This alert is triggered when an error in the IIS logs is detected. | Count `>` 0 | Count `<=` 0 | +| `IIS - High ASP.NET Current Requests` | This alert is triggered when current ASP.NET request count exceeds given value (Default 500). | Count `>` 500 | Count `<=` 500 | +| `IIS - High Client (HTTP 4xx) Error Rate (Copy)` | This alert is triggered when there are too many HTTP requests (>5%) with a 4xx response code. | Count `>` 0 | Count `<=` 0 | +| `IIS - High Current Connections` | This alert is triggered when the current connections exceeds given value (Default 1000), to detect potential capacity issues. | Count `>` 1000 | Count `<=` 1000 | +| `IIS - High Server (HTTP 5xx) Error Rate` | This alert is triggered when there are too many HTTP requests (>5%) with a 5xx response code. | Count `>` 0 | Count `<=` 0 | +| `IIS - No Worker Processes` | This alert is triggered when worker processes count drops to zero indicating potential application pool issues. | Count `<` 1 | Count `>=` 1 | +| `IIS - Slow Response Time` | This alert is triggered when the response time for a given IIS server is greater than one second. | Count `>` 0 | Count `<=` 0 | From 0cbcbd1e7f4318e8dc033ee18171104648f696da Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Mon, 16 Dec 2024 16:13:15 +0530 Subject: [PATCH 03/21] Update docs/integrations/databases/opentelemetry/mariadb-opentelemetry.md Co-authored-by: Jagadisha V <129049263+JV0812@users.noreply.github.com> --- .../databases/opentelemetry/mariadb-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/mariadb-opentelemetry.md b/docs/integrations/databases/opentelemetry/mariadb-opentelemetry.md index 06585f3059..98c6cfb439 100644 --- a/docs/integrations/databases/opentelemetry/mariadb-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/mariadb-opentelemetry.md @@ -262,5 +262,5 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | `MariaDB - Critical Errors` | This alert is triggered when there are critical database errors. | Count `>` 10 | Count `<=` 10 | | `MariaDB - Excessive Slow Query Detected` | This alert is triggered when the average time to execute a query is more than 15 seconds for a 5 minute time interval. | Count `>=` 1 | Count `<` 1 | | `MariaDB - Failed Login Attempts` | This alert is triggered when there are excessive failed login attempts in a short period. | Count `>=` 1 | Count `<` 1 | -| `MariaDB - Instance down` | This alert is triggered when we detect that a MariaDB instance is down | Count `>=` 1 | Count `<` 1 | +| `MariaDB - Instance down` | This alert is triggered when the MariaDB instance is down. | Count `>=` 1 | Count `<` 1 | | `MariaDB - Replication Failure` | This alert is triggered when there are replication failures. | Count `>=` 1 | Count `<` 1 | From 12da77f061dea21ada6c1b406652eb4e551bef25 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Mon, 16 Dec 2024 16:13:25 +0530 Subject: [PATCH 04/21] Update docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md Co-authored-by: Jagadisha V <129049263+JV0812@users.noreply.github.com> --- .../opentelemetry/sql-server-linux-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md index 3c2af71a61..bf68a890a3 100644 --- a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md +++ b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md @@ -196,7 +196,7 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | Name | Description | Alert Condition | Recover Condition | |:--|:--|:--|:--| | `SQL Server - AppDomain` | This alert is triggered when we detect AppDomain related issues in your SQL Server instance. | Count `>=` 1 | Count `<` 1 | -| `SQL Server - Backup Fail` | This alert is triggered when we detect that the SQL Server backup failed. | Count `>=` 1 | Count `<` 1 | +| `SQL Server - Backup Fail` | This alert is triggered when the SQL Server backup is failed. | Count `>=` 1 | Count `<` 1 | | `SQL Server - Deadlock` | This alert is triggered when we detect deadlocks in a SQL Server instance. | Count `>` 5 | Count `<=` 5 | | `SQL Server - Instance Down` | This alert is triggered when we detect that the SQL Server instance is down for 5 minutes. | Count `>` 0 | Count `<=` 0 | | `SQL Server - Insufficient Space` | This alert is triggered when SQL Server instance could not allocate a new page for database because of insufficient disk space in filegroup. | Count `>` 0 | Count `<=` 0 | From ad216f3e23699da43222dc5c187e9149cc5abbae Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Mon, 16 Dec 2024 16:13:39 +0530 Subject: [PATCH 05/21] Update docs/integrations/databases/opentelemetry/couchbase-opentelemetry.md Co-authored-by: Jagadisha V <129049263+JV0812@users.noreply.github.com> --- .../databases/opentelemetry/couchbase-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/couchbase-opentelemetry.md b/docs/integrations/databases/opentelemetry/couchbase-opentelemetry.md index 19a396556a..a4d27a7cf3 100644 --- a/docs/integrations/databases/opentelemetry/couchbase-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/couchbase-opentelemetry.md @@ -238,7 +238,7 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | Name | Description | Alert Condition | Recover Condition | |:--|:--|:--|:--| | `Couchbase - Bucket Not Ready` | This alert is triggered when a bucket in the Couchbase cluster is not ready. | Count `>` 0 | Count `<=` 0 | -| `Couchbase - High Latency HTTP Requests` | This alert is triggered on high average latency for HTTP requests to Couchbase | Count `>` 1000 | Count `<=` 1000 | +| `Couchbase - High Latency HTTP Requests` | This alert is triggered on high average latency for HTTP requests to the Couchbase. | Count `>` 1000 | Count `<=` 1000 | | `Couchbase - Node Down` | This alert is triggered when a node in the Couchbase cluster is down. | Count `>` 0 | Count `<=` 0 | | `Couchbase - Node Not Respond` | This alert is triggered when a node in the Couchbase cluster does not respond too many times. | Count `>=` 10 | Count `<` 10 | | `Couchbase - Too Many Error Queries on Buckets` | This alert is triggered when there are too many error queries on a bucket in a Couchbase cluster. | Count `>=` 1000 | Count `<` 1000 | From eea0cd3da4124ea0bfa82496a817d0fe77e89d74 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Mon, 16 Dec 2024 16:14:04 +0530 Subject: [PATCH 06/21] Update docs/integrations/web-servers/opentelemetry/squid-proxy-opentelemetry.md Co-authored-by: Jagadisha V <129049263+JV0812@users.noreply.github.com> --- .../web-servers/opentelemetry/squid-proxy-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/web-servers/opentelemetry/squid-proxy-opentelemetry.md b/docs/integrations/web-servers/opentelemetry/squid-proxy-opentelemetry.md index d9ac089241..37514ed704 100644 --- a/docs/integrations/web-servers/opentelemetry/squid-proxy-opentelemetry.md +++ b/docs/integrations/web-servers/opentelemetry/squid-proxy-opentelemetry.md @@ -206,6 +206,6 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | Name | Description | Alert Condition | Recover Condition | |:--|:--|:--|:--| | `Squid Proxy - High Client (HTTP 4xx) Error Rate` | This alert is triggered when there are too many HTTP requests (>5%) with a response status of 4xx. | Count `>` 0 | Count `<=` 0 | -| `Squid Proxy - High Denied Request` | This alert is triggered when there are too many HTTP denied requests (>5%) | Count `>` 0 | Count `<=` 0 | +| `Squid Proxy - High Denied Request` | This alert is triggered when there are too many HTTP denied requests (>5%). | Count `>` 0 | Count `<=` 0 | | `Squid Proxy - High Response Time` | This alert is triggered when requests are taking too long to process. | Count `>` 20 | Count `<=` 20 | | `Squid Proxy - High Server (HTTP 5xx) Error Rate` | This alert is triggered when there are too many HTTP requests (>5%) with a response status of 5xx. | Count `>` 0 | Count `<=` 0 | From b5d8d2af8303d8df6ba2bbec3e13a5ddcaa594a1 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Mon, 16 Dec 2024 16:14:12 +0530 Subject: [PATCH 07/21] Update docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md Co-authored-by: Jagadisha V <129049263+JV0812@users.noreply.github.com> --- .../opentelemetry/sql-server-linux-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md index bf68a890a3..814c4525b0 100644 --- a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md +++ b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md @@ -201,4 +201,4 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | `SQL Server - Instance Down` | This alert is triggered when we detect that the SQL Server instance is down for 5 minutes. | Count `>` 0 | Count `<=` 0 | | `SQL Server - Insufficient Space` | This alert is triggered when SQL Server instance could not allocate a new page for database because of insufficient disk space in filegroup. | Count `>` 0 | Count `<=` 0 | | `SQL Server - Login Fail` | This alert is triggered when we detect that the user cannot login to SQL Server. | Count `>=` 1 | Count `<` 1 | -| `SQL Server - Mirroring Error` | This alert is triggered when we detect that the SQL Server mirroring has error. | Count `>=` 1 | Count `<` 1 | +| `SQL Server - Mirroring Error` | This alert is triggered when the SQL Server mirroring has error. | Count `>=` 1 | Count `<` 1 | From 23f64efbe1fa47652fc1e892f8b3cf40f5891b4c Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Mon, 16 Dec 2024 16:14:22 +0530 Subject: [PATCH 08/21] Update docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md Co-authored-by: Jagadisha V <129049263+JV0812@users.noreply.github.com> --- .../opentelemetry/sql-server-linux-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md index 814c4525b0..7a011350e5 100644 --- a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md +++ b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md @@ -200,5 +200,5 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | `SQL Server - Deadlock` | This alert is triggered when we detect deadlocks in a SQL Server instance. | Count `>` 5 | Count `<=` 5 | | `SQL Server - Instance Down` | This alert is triggered when we detect that the SQL Server instance is down for 5 minutes. | Count `>` 0 | Count `<=` 0 | | `SQL Server - Insufficient Space` | This alert is triggered when SQL Server instance could not allocate a new page for database because of insufficient disk space in filegroup. | Count `>` 0 | Count `<=` 0 | -| `SQL Server - Login Fail` | This alert is triggered when we detect that the user cannot login to SQL Server. | Count `>=` 1 | Count `<` 1 | +| `SQL Server - Login Fail` | This alert is triggered when the user is unable to login to the SQL Server. | Count `>=` 1 | Count `<` 1 | | `SQL Server - Mirroring Error` | This alert is triggered when the SQL Server mirroring has error. | Count `>=` 1 | Count `<` 1 | From c7086dea00d40389f853b5259500ba6023c453f9 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Mon, 16 Dec 2024 16:14:34 +0530 Subject: [PATCH 09/21] Update docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md Co-authored-by: Jagadisha V <129049263+JV0812@users.noreply.github.com> --- .../opentelemetry/sql-server-linux-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md index 7a011350e5..ad6f4037ca 100644 --- a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md +++ b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md @@ -198,7 +198,7 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | `SQL Server - AppDomain` | This alert is triggered when we detect AppDomain related issues in your SQL Server instance. | Count `>=` 1 | Count `<` 1 | | `SQL Server - Backup Fail` | This alert is triggered when the SQL Server backup is failed. | Count `>=` 1 | Count `<` 1 | | `SQL Server - Deadlock` | This alert is triggered when we detect deadlocks in a SQL Server instance. | Count `>` 5 | Count `<=` 5 | -| `SQL Server - Instance Down` | This alert is triggered when we detect that the SQL Server instance is down for 5 minutes. | Count `>` 0 | Count `<=` 0 | +| `SQL Server - Instance Down` | This alert is triggered when the SQL Server instance is down for 5 minutes. | Count `>` 0 | Count `<=` 0 | | `SQL Server - Insufficient Space` | This alert is triggered when SQL Server instance could not allocate a new page for database because of insufficient disk space in filegroup. | Count `>` 0 | Count `<=` 0 | | `SQL Server - Login Fail` | This alert is triggered when the user is unable to login to the SQL Server. | Count `>=` 1 | Count `<` 1 | | `SQL Server - Mirroring Error` | This alert is triggered when the SQL Server mirroring has error. | Count `>=` 1 | Count `<` 1 | From 986c99d66f7b4df4ddca19220fdb33de85d1e972 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Tue, 17 Dec 2024 17:19:46 +0530 Subject: [PATCH 10/21] Update docs/integrations/databases/opentelemetry/oracle-opentelemetry.md Co-authored-by: Amee Lepcha --- .../databases/opentelemetry/oracle-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md index 8d7ce6ea6e..bae55ccafe 100644 --- a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md @@ -571,7 +571,7 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | Name | Description | Alert Condition | Recover Condition | |:--|:--|:--|:--| | `Oracle - Admin Restricted Command Execution` | This alert is triggered when the Listener could not resolve a command. | Count `>` 0 | Count `<=` 0 | -| `Oracle - Archival Log Creation` | This alert is triggered when there is an archive log creation error. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Archival Log Creation` | This alert is triggered when an archive log creation error occurs. | Count `>` 0 | Count `<=` 0 | | `Oracle - Block Corruption` | This alert is triggered when we detect corrupted data blocks. | Count `>` 0 | Count `<=` 0 | | `Oracle - Database Crash` | This alert is triggered when the database crashes. | Count `>` 0 | Count `<=` 0 | | `Oracle - Deadlock` | This alert is triggered when deadlocks are detected. | Count `>` 5 | Count `<=` 5 | From 85569ec60d3584c8dc83ebfd060d2e327b46a8b6 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Tue, 17 Dec 2024 17:20:03 +0530 Subject: [PATCH 11/21] Update docs/integrations/databases/opentelemetry/oracle-opentelemetry.md Co-authored-by: Amee Lepcha --- .../databases/opentelemetry/oracle-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md index bae55ccafe..aff7e093a6 100644 --- a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md @@ -581,4 +581,4 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | `Oracle - Possible Inappropriate Activity` | This alert is triggered when we detect possible inappropriate activity. | Count `>` 0 | Count `<=` 0 | | `Oracle - TNS Error` | This alert is triggered when we detect TNS operations errors. | Count `>` 0 | Count `<=` 0 | | `Oracle - Unable To Extend Tablespace` | This alert is triggered when we detect that we are unable to extend tablespaces. | Count `>` 0 | Count `<=` 0 | -| `Oracle - Unauthorized Command Execution` | This alert is triggered when we detect that a user is not authorized to execute a requested listener command in a Oracle instance. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Unauthorized Command Execution` | This alert is triggered when a user is not authorized to execute a requested listener command in an Oracle instance. | Count `>` 0 | Count `<=` 0 | From b7833b7a681e3a21f4d53aed7c0836c80a000438 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Tue, 17 Dec 2024 17:20:21 +0530 Subject: [PATCH 12/21] Update docs/integrations/databases/opentelemetry/oracle-opentelemetry.md Co-authored-by: Amee Lepcha --- .../databases/opentelemetry/oracle-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md index aff7e093a6..09413c0ecc 100644 --- a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md @@ -580,5 +580,5 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | `Oracle - Login Fail` | This alert is triggered when we detect that a user cannot login. | Count `>` 0 | Count `<=` 0 | | `Oracle - Possible Inappropriate Activity` | This alert is triggered when we detect possible inappropriate activity. | Count `>` 0 | Count `<=` 0 | | `Oracle - TNS Error` | This alert is triggered when we detect TNS operations errors. | Count `>` 0 | Count `<=` 0 | -| `Oracle - Unable To Extend Tablespace` | This alert is triggered when we detect that we are unable to extend tablespaces. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Unable To Extend Tablespace` | This alert is triggered when tablespace extension failures are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Unauthorized Command Execution` | This alert is triggered when a user is not authorized to execute a requested listener command in an Oracle instance. | Count `>` 0 | Count `<=` 0 | From 53811539f6a62e6192e8d0b2a6d125e2b89e4c6c Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Tue, 17 Dec 2024 17:20:39 +0530 Subject: [PATCH 13/21] Update docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md Co-authored-by: Amee Lepcha --- .../opentelemetry/sql-server-linux-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md index ad6f4037ca..fb6cb61b77 100644 --- a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md +++ b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md @@ -196,7 +196,7 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | Name | Description | Alert Condition | Recover Condition | |:--|:--|:--|:--| | `SQL Server - AppDomain` | This alert is triggered when we detect AppDomain related issues in your SQL Server instance. | Count `>=` 1 | Count `<` 1 | -| `SQL Server - Backup Fail` | This alert is triggered when the SQL Server backup is failed. | Count `>=` 1 | Count `<` 1 | +| `SQL Server - Backup Fail` | This alert is triggered when the SQL Server backup fails. | Count `>=` 1 | Count `<` 1 | | `SQL Server - Deadlock` | This alert is triggered when we detect deadlocks in a SQL Server instance. | Count `>` 5 | Count `<=` 5 | | `SQL Server - Instance Down` | This alert is triggered when the SQL Server instance is down for 5 minutes. | Count `>` 0 | Count `<=` 0 | | `SQL Server - Insufficient Space` | This alert is triggered when SQL Server instance could not allocate a new page for database because of insufficient disk space in filegroup. | Count `>` 0 | Count `<=` 0 | From 5e0a5e07f600d04b06761617a1de2cf85b799ab9 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Tue, 17 Dec 2024 17:21:21 +0530 Subject: [PATCH 14/21] Update docs/integrations/databases/opentelemetry/oracle-opentelemetry.md Co-authored-by: Amee Lepcha --- .../databases/opentelemetry/oracle-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md index 09413c0ecc..e940fbe4d8 100644 --- a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md @@ -579,6 +579,6 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | `Oracle - Internal Errors` | This alert is triggered when internal errors are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Login Fail` | This alert is triggered when we detect that a user cannot login. | Count `>` 0 | Count `<=` 0 | | `Oracle - Possible Inappropriate Activity` | This alert is triggered when we detect possible inappropriate activity. | Count `>` 0 | Count `<=` 0 | -| `Oracle - TNS Error` | This alert is triggered when we detect TNS operations errors. | Count `>` 0 | Count `<=` 0 | +| `Oracle - TNS Error` | This alert is triggered when TNS operation errors are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Unable To Extend Tablespace` | This alert is triggered when tablespace extension failures are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Unauthorized Command Execution` | This alert is triggered when a user is not authorized to execute a requested listener command in an Oracle instance. | Count `>` 0 | Count `<=` 0 | From 3a606bf0359183a086ae18e5b0ed8c720d43224b Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Tue, 17 Dec 2024 17:21:34 +0530 Subject: [PATCH 15/21] Update docs/integrations/databases/opentelemetry/oracle-opentelemetry.md Co-authored-by: Amee Lepcha --- .../databases/opentelemetry/oracle-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md index e940fbe4d8..171d4cfc69 100644 --- a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md @@ -570,7 +570,7 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | Name | Description | Alert Condition | Recover Condition | |:--|:--|:--|:--| -| `Oracle - Admin Restricted Command Execution` | This alert is triggered when the Listener could not resolve a command. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Admin Restricted Command Execution` | This alert is triggered when the Listener cannot resolve a command. | Count `>` 0 | Count `<=` 0 | | `Oracle - Archival Log Creation` | This alert is triggered when an archive log creation error occurs. | Count `>` 0 | Count `<=` 0 | | `Oracle - Block Corruption` | This alert is triggered when we detect corrupted data blocks. | Count `>` 0 | Count `<=` 0 | | `Oracle - Database Crash` | This alert is triggered when the database crashes. | Count `>` 0 | Count `<=` 0 | From 144e7d7f6df57baafa0e4c6184466b3d2f7e8838 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Tue, 17 Dec 2024 17:23:20 +0530 Subject: [PATCH 16/21] Update docs/integrations/databases/opentelemetry/oracle-opentelemetry.md Co-authored-by: Amee Lepcha --- .../databases/opentelemetry/oracle-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md index 171d4cfc69..32be37e037 100644 --- a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md @@ -572,7 +572,7 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; |:--|:--|:--|:--| | `Oracle - Admin Restricted Command Execution` | This alert is triggered when the Listener cannot resolve a command. | Count `>` 0 | Count `<=` 0 | | `Oracle - Archival Log Creation` | This alert is triggered when an archive log creation error occurs. | Count `>` 0 | Count `<=` 0 | -| `Oracle - Block Corruption` | This alert is triggered when we detect corrupted data blocks. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Block Corruption` | This alert is triggered when corrupt data blocks are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Database Crash` | This alert is triggered when the database crashes. | Count `>` 0 | Count `<=` 0 | | `Oracle - Deadlock` | This alert is triggered when deadlocks are detected. | Count `>` 5 | Count `<=` 5 | | `Oracle - Fatal NI Connect Error` | This alert is triggered when we detect a "Fatal NI connect error". | Count `>` 0 | Count `<=` 0 | From 9845ad1a3bf9e6c560ffc56f6db17c0a72c638cd Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Tue, 17 Dec 2024 17:23:27 +0530 Subject: [PATCH 17/21] Update docs/integrations/databases/opentelemetry/oracle-opentelemetry.md Co-authored-by: Amee Lepcha --- .../databases/opentelemetry/oracle-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md index 32be37e037..6fc5b70607 100644 --- a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md @@ -575,7 +575,7 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | `Oracle - Block Corruption` | This alert is triggered when corrupt data blocks are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Database Crash` | This alert is triggered when the database crashes. | Count `>` 0 | Count `<=` 0 | | `Oracle - Deadlock` | This alert is triggered when deadlocks are detected. | Count `>` 5 | Count `<=` 5 | -| `Oracle - Fatal NI Connect Error` | This alert is triggered when we detect a "Fatal NI connect error". | Count `>` 0 | Count `<=` 0 | +| `Oracle - Fatal NI Connect Error` | This alert is triggered when a "Fatal NI connect error" is detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Internal Errors` | This alert is triggered when internal errors are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Login Fail` | This alert is triggered when we detect that a user cannot login. | Count `>` 0 | Count `<=` 0 | | `Oracle - Possible Inappropriate Activity` | This alert is triggered when we detect possible inappropriate activity. | Count `>` 0 | Count `<=` 0 | From bcb7d3fbd81d0f631a5f585193e379664840633b Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Tue, 17 Dec 2024 17:23:38 +0530 Subject: [PATCH 18/21] Update docs/integrations/databases/opentelemetry/oracle-opentelemetry.md Co-authored-by: Amee Lepcha --- .../databases/opentelemetry/oracle-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md index 6fc5b70607..0d17708cdb 100644 --- a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md @@ -578,7 +578,7 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | `Oracle - Fatal NI Connect Error` | This alert is triggered when a "Fatal NI connect error" is detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Internal Errors` | This alert is triggered when internal errors are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Login Fail` | This alert is triggered when we detect that a user cannot login. | Count `>` 0 | Count `<=` 0 | -| `Oracle - Possible Inappropriate Activity` | This alert is triggered when we detect possible inappropriate activity. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Possible Inappropriate Activity` | This alert is triggered when possible inappropriate activity is detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - TNS Error` | This alert is triggered when TNS operation errors are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Unable To Extend Tablespace` | This alert is triggered when tablespace extension failures are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Unauthorized Command Execution` | This alert is triggered when a user is not authorized to execute a requested listener command in an Oracle instance. | Count `>` 0 | Count `<=` 0 | From f99514041e1dcc67abed9435eae89d4b3f8e4bd4 Mon Sep 17 00:00:00 2001 From: Chetan Choudhary Date: Tue, 17 Dec 2024 17:23:47 +0530 Subject: [PATCH 19/21] Update docs/integrations/databases/opentelemetry/oracle-opentelemetry.md Co-authored-by: Amee Lepcha --- .../databases/opentelemetry/oracle-opentelemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md index 0d17708cdb..1be791d8d9 100644 --- a/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md +++ b/docs/integrations/databases/opentelemetry/oracle-opentelemetry.md @@ -577,7 +577,7 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | `Oracle - Deadlock` | This alert is triggered when deadlocks are detected. | Count `>` 5 | Count `<=` 5 | | `Oracle - Fatal NI Connect Error` | This alert is triggered when a "Fatal NI connect error" is detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Internal Errors` | This alert is triggered when internal errors are detected. | Count `>` 0 | Count `<=` 0 | -| `Oracle - Login Fail` | This alert is triggered when we detect that a user cannot login. | Count `>` 0 | Count `<=` 0 | +| `Oracle - Login Fail` | This alert is triggered when a user login failure is detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Possible Inappropriate Activity` | This alert is triggered when possible inappropriate activity is detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - TNS Error` | This alert is triggered when TNS operation errors are detected. | Count `>` 0 | Count `<=` 0 | | `Oracle - Unable To Extend Tablespace` | This alert is triggered when tablespace extension failures are detected. | Count `>` 0 | Count `<=` 0 | From 35ca4ac4b88658c553c4de2ef5a77014b61e6db1 Mon Sep 17 00:00:00 2001 From: Amee Lepcha Date: Tue, 17 Dec 2024 19:05:41 +0530 Subject: [PATCH 20/21] Update sql-server-linux-opentelemetry.md --- .../opentelemetry/sql-server-linux-opentelemetry.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md index fb6cb61b77..e89362d715 100644 --- a/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md +++ b/docs/integrations/microsoft-azure/opentelemetry/sql-server-linux-opentelemetry.md @@ -195,10 +195,10 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | Name | Description | Alert Condition | Recover Condition | |:--|:--|:--|:--| -| `SQL Server - AppDomain` | This alert is triggered when we detect AppDomain related issues in your SQL Server instance. | Count `>=` 1 | Count `<` 1 | +| `SQL Server - AppDomain` | This alert is triggered when AppDomain-related issues are detected in your SQL Server instance. | Count `>=` 1 | Count `<` 1 | | `SQL Server - Backup Fail` | This alert is triggered when the SQL Server backup fails. | Count `>=` 1 | Count `<` 1 | -| `SQL Server - Deadlock` | This alert is triggered when we detect deadlocks in a SQL Server instance. | Count `>` 5 | Count `<=` 5 | +| `SQL Server - Deadlock` | This alert is triggered when deadlocks are detected in a SQL Server instance. | Count `>` 5 | Count `<=` 5 | | `SQL Server - Instance Down` | This alert is triggered when the SQL Server instance is down for 5 minutes. | Count `>` 0 | Count `<=` 0 | -| `SQL Server - Insufficient Space` | This alert is triggered when SQL Server instance could not allocate a new page for database because of insufficient disk space in filegroup. | Count `>` 0 | Count `<=` 0 | +| `SQL Server - Insufficient Space` | This alert is triggered when the SQL Server instance cannot allocate a new page for the database due to insufficient disk space in the filegroup. | Count `>` 0 | Count `<=` 0 | | `SQL Server - Login Fail` | This alert is triggered when the user is unable to login to the SQL Server. | Count `>=` 1 | Count `<` 1 | -| `SQL Server - Mirroring Error` | This alert is triggered when the SQL Server mirroring has error. | Count `>=` 1 | Count `<` 1 | +| `SQL Server - Mirroring Error` | This alert is triggered when an error occurs in SQL Server mirroring. | Count `>=` 1 | Count `<` 1 | From 7862084b87f69d6701d0e62ebec2ca429a0e0016 Mon Sep 17 00:00:00 2001 From: Amee Lepcha Date: Tue, 17 Dec 2024 19:13:09 +0530 Subject: [PATCH 21/21] Update iis-10-opentelemetry.md --- .../opentelemetry/iis-10-opentelemetry.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/integrations/web-servers/opentelemetry/iis-10-opentelemetry.md b/docs/integrations/web-servers/opentelemetry/iis-10-opentelemetry.md index c299ae1163..dace68e7ec 100644 --- a/docs/integrations/web-servers/opentelemetry/iis-10-opentelemetry.md +++ b/docs/integrations/web-servers/opentelemetry/iis-10-opentelemetry.md @@ -329,12 +329,12 @@ import CreateMonitors from '../../../reuse/apps/create-monitors.md'; | Name | Description | Alert Condition | Recover Condition | |:--|:--|:--|:--| | `IIS - Access from Highly Malicious Sources` | This alert is triggered when an IIS server is accessed from highly malicious IP addresses. | Count `>` 0 | Count `<=` 0 | -| `IIS - ASP.NET Application Errors` | This alert is triggered when we detect an error in the ASP.NET applications running on an IIS server. | Count `>` 0 | Count `<=` 0 | -| `IIS - Blocked Async IO Requests` | This alert is triggered when we detect that there are blocked async I/O requests on an IIS server. | Count `>` 0 | Count `<=` 0 | -| `IIS - Error Events` | This alert is triggered when an error in the IIS logs is detected. | Count `>` 0 | Count `<=` 0 | -| `IIS - High ASP.NET Current Requests` | This alert is triggered when current ASP.NET request count exceeds given value (Default 500). | Count `>` 500 | Count `<=` 500 | -| `IIS - High Client (HTTP 4xx) Error Rate (Copy)` | This alert is triggered when there are too many HTTP requests (>5%) with a 4xx response code. | Count `>` 0 | Count `<=` 0 | -| `IIS - High Current Connections` | This alert is triggered when the current connections exceeds given value (Default 1000), to detect potential capacity issues. | Count `>` 1000 | Count `<=` 1000 | -| `IIS - High Server (HTTP 5xx) Error Rate` | This alert is triggered when there are too many HTTP requests (>5%) with a 5xx response code. | Count `>` 0 | Count `<=` 0 | -| `IIS - No Worker Processes` | This alert is triggered when worker processes count drops to zero indicating potential application pool issues. | Count `<` 1 | Count `>=` 1 | -| `IIS - Slow Response Time` | This alert is triggered when the response time for a given IIS server is greater than one second. | Count `>` 0 | Count `<=` 0 | +| `IIS - ASP.NET Application Errors` | This alert is triggered when an error is detected in the ASP.NET applications running on an IIS server. | Count `>` 0 | Count `<=` 0 | +| `IIS - Blocked Async IO Requests` | This alert is triggered when blocked async I/O requests are detected on an IIS server. | Count `>` 0 | Count `<=` 0 | +| `IIS - Error Events` | This alert is triggered when an error is detected in the IIS logs. | Count `>` 0 | Count `<=` 0 | +| `IIS - High ASP.NET Current Requests` | This alert is triggered when the current ASP.NET request count exceeds the given value (Default 500). | Count `>` 500 | Count `<=` 500 | +| `IIS - High Client (HTTP 4xx) Error Rate (Copy)` | This alert is triggered when more than 5% of HTTP requests result in a 4xx response code. | Count `>` 0 | Count `<=` 0 | +| `IIS - High Current Connections` | This alert is triggered when the current connections exceed the given value (Default 1000), indicating potential capacity issues. | Count `>` 1000 | Count `<=` 1000 | +| `IIS - High Server (HTTP 5xx) Error Rate` | This alert is triggered when more than 5% of HTTP requests result in a 5xx response code. | Count `>` 0 | Count `<=` 0 | +| `IIS - No Worker Processes` | This alert is triggered when the worker process count drops to zero, indicating potential application pool issues. | Count `<` 1 | Count `>=` 1 | +| `IIS - Slow Response Time` | This alert is triggered when the response time for a given IIS server exceeds one second. | Count `>` 0 | Count `<=` 0 |