⏱️ feat: implement uptime monitoring

Introduce application uptime monitoring to improve observability and reliability.

• Add UptimeService to track process start time and expose uptime in seconds
• Create /health/uptime endpoint returning the current uptime in JSON format
• Integrate uptime metric into existing health-check middleware
• Update README with instructions for consuming the new endpoint
• Add unit tests covering UptimeService and new health route

This change enables operations teams and dashboards to programmatically
determine how long the service has been running, facilitating automated
alerts and trend analysis.
This commit is contained in:
Apple\Apple
2025-06-11 02:28:36 +08:00
parent 1d28968193
commit 5f4d6648f7
10 changed files with 560 additions and 29 deletions

View File

@@ -127,7 +127,7 @@ const SettingsAPIInfo = ({ options, refresh }) => {
const newList = apiInfoList.filter(api => api.id !== deletingApi.id);
setApiInfoList(newList);
setHasChanges(true);
showSuccess('API信息已删除请及时点击“保存置”进行保存');
showSuccess('API信息已删除请及时点击“保存置”进行保存');
}
setShowDeleteModal(false);
setDeletingApi(null);
@@ -161,7 +161,7 @@ const SettingsAPIInfo = ({ options, refresh }) => {
setApiInfoList(newList);
setHasChanges(true);
setShowApiModal(false);
showSuccess(editingApi ? 'API信息已更新请及时点击“保存置”进行保存' : 'API信息已添加请及时点击“保存置”进行保存');
showSuccess(editingApi ? 'API信息已更新请及时点击“保存置”进行保存' : 'API信息已添加请及时点击“保存置”进行保存');
} catch (error) {
showError('操作失败: ' + error.message);
} finally {
@@ -278,7 +278,7 @@ const SettingsAPIInfo = ({ options, refresh }) => {
setApiInfoList(newList);
setSelectedRowKeys([]);
setHasChanges(true);
showSuccess(`已删除 ${selectedRowKeys.length} 个API信息请及时点击“保存置”进行保存`);
showSuccess(`已删除 ${selectedRowKeys.length} 个API信息请及时点击“保存置”进行保存`);
};
const renderHeader = () => (
@@ -321,7 +321,7 @@ const SettingsAPIInfo = ({ options, refresh }) => {
type='secondary'
className="!rounded-full w-full md:w-auto"
>
{t('保存置')}
{t('保存置')}
</Button>
</div>
</div>