Skip to content

Commit

Permalink
feat: adding tcp monitor, reinstating ping as reported in #243
Browse files Browse the repository at this point in the history
  • Loading branch information
Raj Nandan Sharma authored and Raj Nandan Sharma committed Feb 7, 2025
1 parent 07f59ac commit e3e59b7
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
19 changes: 19 additions & 0 deletions docs/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ description: Changelogs for Kener

Here are the changelogs for Kener. Changelogs are only published when there are new features or breaking changes.

## v3.0.10

<picture>
<source srcset="https://fonts.gstatic.com/s/e/notoemoji/latest/1f680/512.webp" type="image/webp">
<img src="https://fonts.gstatic.com/s/e/notoemoji/latest/1f680/512.gif" alt="🚀" width="32" height="32">
</picture>

### Features

- Added TCP monitors

### Breaking Changes

- Ping monitors will break.

### Fixes

- Bug fixes in the UI

## v3.0.9

<picture>
Expand Down
1 change: 1 addition & 0 deletions docs/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ cheaply available domain.
### Monitoring and Tracking

- Advanced application performance monitoring tools
- Types of Monitors: HTTP, TCP, DNS, ICMP etc
- Real-time network monitor software capabilities
- Polls HTTP endpoint or Push data to monitor using Rest APIs
- Handles Timezones for visitors
Expand Down
8 changes: 4 additions & 4 deletions src/lib/components/manage/monitorSheet.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
newMonitor.apiConfig.eval = newMonitor.apiConfig.eval.trim();
if (!(await isValidEval(newMonitor.apiConfig.eval))) {
invalidFormMessage = invalidFormMessage + "Invalid eval";
invalidFormMessage = invalidFormMessage + ". Invalid eval";
return;
}
}
Expand Down Expand Up @@ -190,7 +190,7 @@
if (!!newMonitor.pingConfig.pingEval) {
newMonitor.pingConfig.pingEval = newMonitor.pingConfig.pingEval.trim();
if (!(await isValidEval(newMonitor.pingConfig.pingEval))) {
invalidFormMessage = invalidFormMessage + "Invalid eval";
invalidFormMessage = invalidFormMessage + ". Invalid eval";
return;
}
}
Expand All @@ -213,7 +213,7 @@
}
//validating port
if (hosts[i].port < 1 || hosts[i].port > 65535) {
invalidFormMessage = "Port should valid";
invalidFormMessage = "Port should be valid";
return;
}
}
Expand All @@ -224,7 +224,7 @@
if (!!newMonitor.tcpConfig.tcpEval) {
newMonitor.tcpConfig.tcpEval = newMonitor.tcpConfig.tcpEval.trim();
if (!(await isValidEval(newMonitor.tcpConfig.tcpEval))) {
invalidFormMessage = invalidFormMessage + "Invalid eval";
invalidFormMessage = invalidFormMessage + ". Invalid eval";
return;
}
}
Expand Down

0 comments on commit e3e59b7

Please sign in to comment.