Compare commits

...

13 Commits

Author SHA1 Message Date
broodroosterdev ccbc4c5a51
Merge 2192bfa42b into dbbc79a05a 2024-05-02 10:11:38 -03:00
Frank Elsinga dbbc79a05a
Fixed a typo introduced in #3836 (#4729)
Co-authored-by: Nelson Chan <3271800+chakflying@users.noreply.github.com>
2024-05-02 12:11:49 +08:00
broodroosterdev 2192bfa42b
Merge branch 'master' into hide-uptime-percentage 2024-04-12 15:37:32 +02:00
Bas Wieringa fb50d5f77c Change to show last heartbeat 2024-04-12 15:32:50 +02:00
broodroosterdev f381d64fce
Use v-else instead of negative v-if
Co-authored-by: Frank Elsinga <frank@elsinga.de>
2024-04-12 15:12:53 +02:00
broodroosterdev 75f2c69ac5
Merge branch 'master' into hide-uptime-percentage 2024-03-21 21:14:37 +01:00
Bas Wieringa 629b15c56e Add required newline to end of migration file 2024-03-15 17:09:53 +01:00
Bas Wieringa 612581a5d5 Refactor migration to new knex migrations 2024-03-15 17:07:57 +01:00
Bas Wieringa e539e5aa73 Final linting fix 2024-03-15 16:47:49 +01:00
Bas Wieringa a34ca83844 Remove spaces to fix lint error 2024-03-15 16:43:20 +01:00
Bas Wieringa 488504c3fd Fix input of the statusOfLastHeartbeat function 2024-03-15 16:18:34 +01:00
Bas Wieringa 26e234c132 Remove import that is no longer used 2024-03-15 16:03:32 +01:00
Bas Wieringa 201ac9245b Add toggle to hide the uptime percentage on a statuspage 2024-03-15 15:54:29 +01:00
7 changed files with 48 additions and 4 deletions

View File

@ -49,7 +49,7 @@ Uptime Kuma is now running on <http://0.0.0.0:3001>.
> File Systems like **NFS** (Network File System) are **NOT** supported. Please map to a local directory or volume.
> [!NOTE]
> If you want to limit exppoure to localhost (without exposing port for other users or to use a [reverse proxyx](https://github.com/louislam/uptime-kuma/wiki/Reverse-Proxy)), you can expose the port like this:
> If you want to limit exposure to localhost (without exposing port for other users or to use a [reverse proxy](https://github.com/louislam/uptime-kuma/wiki/Reverse-Proxy)), you can expose the port like this:
>
> ```bash
> docker run -d --restart=always -p 127.0.0.1:3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1

View File

@ -0,0 +1,16 @@
exports.up = function (knex) {
// Add new column status_page.show_last_heartbeat
return knex.schema
.alterTable("status_page", function (table) {
table.boolean("show_last_heartbeat").notNullable().defaultTo(false);
});
};
exports.down = function (knex) {
// Drop column status_page.show_last_heartbeat
return knex.schema
.alterTable("status_page", function (table) {
table.dropColumn("show_last_heartbeat");
});
};

View File

@ -246,6 +246,7 @@ class StatusPage extends BeanModel {
showPoweredBy: !!this.show_powered_by,
googleAnalyticsId: this.google_analytics_tag_id,
showCertificateExpiry: !!this.show_certificate_expiry,
showLastHeartbeat: !!this.show_last_heartbeat
};
}
@ -268,6 +269,7 @@ class StatusPage extends BeanModel {
showPoweredBy: !!this.show_powered_by,
googleAnalyticsId: this.google_analytics_tag_id,
showCertificateExpiry: !!this.show_certificate_expiry,
showLastHeartbeat: !!this.show_last_heartbeat
};
}

View File

@ -163,6 +163,7 @@ module.exports.statusPageSocketHandler = (socket) => {
statusPage.footer_text = config.footerText;
statusPage.custom_css = config.customCSS;
statusPage.show_powered_by = config.showPoweredBy;
statusPage.show_last_heartbeat = config.showLastHeartbeat;
statusPage.show_certificate_expiry = config.showCertificateExpiry;
statusPage.modified_date = R.isoDateTime();
statusPage.google_analytics_tag_id = config.googleAnalyticsId;

View File

@ -38,7 +38,8 @@
<font-awesome-icon v-if="editMode" icon="arrows-alt-v" class="action drag me-3" />
<font-awesome-icon v-if="editMode" icon="times" class="action remove me-3" @click="removeMonitor(group.index, monitor.index)" />
<Uptime :monitor="monitor.element" type="24" :pill="true" />
<Status v-if="showLastHeartbeat" :status="statusOfLastHeartbeat(monitor.element.id)" />
<Uptime v-else :monitor="monitor.element" type="24" :pill="true" />
<a
v-if="showLink(monitor)"
:href="monitor.element.url"
@ -90,6 +91,7 @@ import Draggable from "vuedraggable";
import HeartbeatBar from "./HeartbeatBar.vue";
import Uptime from "./Uptime.vue";
import Tag from "./Tag.vue";
import Status from "./Status.vue";
export default {
components: {
@ -98,6 +100,7 @@ export default {
HeartbeatBar,
Uptime,
Tag,
Status,
},
props: {
/** Are we in edit mode? */
@ -112,7 +115,11 @@ export default {
/** Should expiry be shown? */
showCertificateExpiry: {
type: Boolean,
}
},
/** Should only the last heartbeat be shown? */
showLastHeartbeat: {
type: Boolean,
},
},
data() {
return {
@ -181,6 +188,17 @@ export default {
}
},
/**
* Returns the status of the last heartbeat
* @param {number} monitorId Id of the monitor to get status for
* @returns {number} Status of the last heartbeat
*/
statusOfLastHeartbeat(monitorId) {
let heartbeats = this.$root.heartbeatList[monitorId] ?? [];
let lastHeartbeat = heartbeats[heartbeats.length - 1];
return lastHeartbeat?.status;
},
/**
* Returns certificate expiry color based on days remaining
* @param {object} monitor Monitor to show expiry for

View File

@ -859,6 +859,7 @@
"nostrRecipients": "Recipients Public Keys (npub)",
"nostrRecipientsHelp": "npub format, one per line",
"showCertificateExpiry": "Show Certificate Expiry",
"showLastHeartbeat": "Show Last Heartbeat Only",
"noOrBadCertificate": "No/Bad Certificate",
"gamedigGuessPort": "Gamedig: Guess Port",
"gamedigGuessPortDescription": "The port used by Valve Server Query Protocol may be different from the client port. Try this if the monitor cannot connect to your server.",

View File

@ -60,6 +60,12 @@
<label class="form-check-label" for="show-certificate-expiry">{{ $t("showCertificateExpiry") }}</label>
</div>
<!-- Show last heartbeat -->
<div class="my-3 form-check form-switch">
<input id="show-last-heartbeat" v-model="config.showLastHeartbeat" class="form-check-input" type="checkbox">
<label class="form-check-label" for="show-last-heartbeat">{{ $t("showLastHeartbeat") }}</label>
</div>
<div v-if="false" class="my-3">
<label for="password" class="form-label">{{ $t("Password") }} <sup>{{ $t("Coming Soon") }}</sup></label>
<input id="password" v-model="config.password" disabled type="password" autocomplete="new-password" class="form-control">
@ -319,7 +325,7 @@
👀 {{ $t("statusPageNothing") }}
</div>
<PublicGroupList :edit-mode="enableEditMode" :show-tags="config.showTags" :show-certificate-expiry="config.showCertificateExpiry" />
<PublicGroupList :edit-mode="enableEditMode" :show-tags="config.showTags" :show-certificate-expiry="config.showCertificateExpiry" :show-last-heartbeat="config.showLastHeartbeat" />
</div>
<footer class="mt-5 mb-4">