-
-
Notifications
You must be signed in to change notification settings - Fork 407
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
13 changed files
with
108 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
apps/docs/src/content/docs/monitoring/monitor-data-collected.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
title: Monitor Data Points | ||
description: "Monitor metrics are the data points that are collected by the monitor during the check." | ||
--- | ||
|
||
import { Image } from 'astro:assets'; | ||
|
||
import ResponseLog from '../../../assets/monitor/response-log.png'; | ||
import ResponseLogHeader from '../../../assets/monitor/response-log-header.png'; | ||
import ResponseLogTiming from '../../../assets/monitor/response-log-timing.png'; | ||
|
||
|
||
## Access Monitor Data Points | ||
|
||
To view your monitor data points, navigate to the monitor details page and click on the `Response` tab. | ||
|
||
|
||
|
||
<Image | ||
src={ResponseLog} | ||
alt="OpenStatus response log" | ||
/> | ||
|
||
|
||
## Monitor Data Points | ||
|
||
These are the data points that are collected by the monitor during the check. | ||
|
||
|
||
|
||
|
||
### HTTP Monitor Metrics | ||
|
||
<Image | ||
src={ResponseLogHeader} | ||
alt="OpenStatus response log" | ||
/> | ||
|
||
|
||
For an HTTP monitor, the following metrics are collected: | ||
- **Status Code**: The HTTP status code returned by the server. | ||
- **Response Time**: The time taken by the server to respond to the request. | ||
- **Response Size**: The size of the response body. | ||
- **Response Headers**: The headers returned by the server. | ||
- **Response Body**: The body of the response in case of error | ||
- **DNS timing**: The time taken to resolve the domain name. | ||
- **TCP timing**: The time taken to establish a TCP connection. | ||
- **TLS timing**: The time taken to establish a TLS connection. | ||
- **TTFB timing**: Time to first byte, the time taken to receive the first byte of the response. | ||
- **Transfer timing**: The time taken to download the response body. | ||
|
||
|
||
<Image | ||
src={ResponseLogTiming} | ||
alt="OpenStatus response log timing" | ||
/> | ||
|
||
### TCP Monitor Metrics | ||
|
||
For a TCP monitor, the following metrics are collected: | ||
- **Response Time**: The time taken by the server to respond to the request. | ||
- **TCP timing**: The time taken to establish a TCP connection. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
apps/docs/src/content/docs/status-page/work/color-status-bar.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Understand the color of the status bar | ||
--- | ||
|
||
On your status page, each status bar can have a different color based on the status of the service. | ||
|
||
- **Green**: The service is up and running. | ||
- **Orange**: The service is slow or degraded. | ||
- **Red**: The service is down or unreachable. | ||
- **Gray**: The service is paused or disabled or there is no data. | ||
- **Blue**: The service is in maintenance or scheduled downtime. |