### 后端修复:日志表不该用软删除 channel_monitor_histories / channel_monitor_daily_rollups 都是日志/聚合表, 没有恢复需求。110 里加的 SoftDeleteMixin 会让 DELETE 自动变成 UPDATE deleted_at, 导致行和索引只增不减,徒增磁盘占用和查询成本。 改回分批物理删(参考 OpsCleanupService.deleteOldRowsByID 模板): - ent schema 移除 SoftDeleteMixin,重新 go generate - repo 新增 deleteChannelMonitorBatched 辅助 + 两条 prune SQL 常量 (WITH batch AS SELECT id LIMIT 5000 → DELETE IN batch) - DeleteHistoryBefore / DeleteRollupsBefore 改调分批 raw SQL - 移除 ComputeAvailability / ComputeAvailabilityForMonitors / UpsertDailyRollupsFor / ListLatestPerModel / ListLatestForMonitorIDs / ListRecentHistoryForMonitors 等 raw SQL 中的 deleted_at IS NULL 过滤 - UpsertDailyRollupsFor 的 ON CONFLICT 去掉 deleted_at = NULL 重置 - migration 111 DROP COLUMN deleted_at + 对应索引(110 已部署但 maintenance 首跑在次日 02:00,此时尚无业务数据在依赖软删除) ### 前端重构:feature flag 声明式 + 复用 AppSidebar.vue 里 7 处 `...(flag ? [item] : [])` 样板代码删光,改为 NavItem 加 featureFlag?: () => boolean | undefined 字段,加一个 applyFeatureFlags 递归 过滤(含 children)。语义统一为 `!== false`(宽容策略,undefined 时默认显示, 避免 public settings 未加载完成时菜单闪烁消失 — 对应用户反馈"刷新后菜单消失 要去保存设置才回来")。 - 集中声明 4 个 flag getter:flagChannelMonitor / flagPayment / flagOpsMonitoring / flagAdminPayment - 提取 buildSelfNavItems 复用用户端主菜单和管理员"我的账户"子菜单 - 未来新增开关:在统一位置加一个 flag getter + 给对应 NavItem 加字段 (不用再动渲染逻辑) bump 0.1.114.29
207 lines
8.2 KiB
Go
207 lines
8.2 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package channelmonitordailyrollup
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the channelmonitordailyrollup type in the database.
|
|
Label = "channel_monitor_daily_rollup"
|
|
// FieldID holds the string denoting the id field in the database.
|
|
FieldID = "id"
|
|
// FieldMonitorID holds the string denoting the monitor_id field in the database.
|
|
FieldMonitorID = "monitor_id"
|
|
// FieldModel holds the string denoting the model field in the database.
|
|
FieldModel = "model"
|
|
// FieldBucketDate holds the string denoting the bucket_date field in the database.
|
|
FieldBucketDate = "bucket_date"
|
|
// FieldTotalChecks holds the string denoting the total_checks field in the database.
|
|
FieldTotalChecks = "total_checks"
|
|
// FieldOkCount holds the string denoting the ok_count field in the database.
|
|
FieldOkCount = "ok_count"
|
|
// FieldOperationalCount holds the string denoting the operational_count field in the database.
|
|
FieldOperationalCount = "operational_count"
|
|
// FieldDegradedCount holds the string denoting the degraded_count field in the database.
|
|
FieldDegradedCount = "degraded_count"
|
|
// FieldFailedCount holds the string denoting the failed_count field in the database.
|
|
FieldFailedCount = "failed_count"
|
|
// FieldErrorCount holds the string denoting the error_count field in the database.
|
|
FieldErrorCount = "error_count"
|
|
// FieldSumLatencyMs holds the string denoting the sum_latency_ms field in the database.
|
|
FieldSumLatencyMs = "sum_latency_ms"
|
|
// FieldCountLatency holds the string denoting the count_latency field in the database.
|
|
FieldCountLatency = "count_latency"
|
|
// FieldSumPingLatencyMs holds the string denoting the sum_ping_latency_ms field in the database.
|
|
FieldSumPingLatencyMs = "sum_ping_latency_ms"
|
|
// FieldCountPingLatency holds the string denoting the count_ping_latency field in the database.
|
|
FieldCountPingLatency = "count_ping_latency"
|
|
// FieldComputedAt holds the string denoting the computed_at field in the database.
|
|
FieldComputedAt = "computed_at"
|
|
// EdgeMonitor holds the string denoting the monitor edge name in mutations.
|
|
EdgeMonitor = "monitor"
|
|
// Table holds the table name of the channelmonitordailyrollup in the database.
|
|
Table = "channel_monitor_daily_rollups"
|
|
// MonitorTable is the table that holds the monitor relation/edge.
|
|
MonitorTable = "channel_monitor_daily_rollups"
|
|
// MonitorInverseTable is the table name for the ChannelMonitor entity.
|
|
// It exists in this package in order to avoid circular dependency with the "channelmonitor" package.
|
|
MonitorInverseTable = "channel_monitors"
|
|
// MonitorColumn is the table column denoting the monitor relation/edge.
|
|
MonitorColumn = "monitor_id"
|
|
)
|
|
|
|
// Columns holds all SQL columns for channelmonitordailyrollup fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldMonitorID,
|
|
FieldModel,
|
|
FieldBucketDate,
|
|
FieldTotalChecks,
|
|
FieldOkCount,
|
|
FieldOperationalCount,
|
|
FieldDegradedCount,
|
|
FieldFailedCount,
|
|
FieldErrorCount,
|
|
FieldSumLatencyMs,
|
|
FieldCountLatency,
|
|
FieldSumPingLatencyMs,
|
|
FieldCountPingLatency,
|
|
FieldComputedAt,
|
|
}
|
|
|
|
// ValidColumn reports if the column name is valid (part of the table columns).
|
|
func ValidColumn(column string) bool {
|
|
for i := range Columns {
|
|
if column == Columns[i] {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
var (
|
|
// ModelValidator is a validator for the "model" field. It is called by the builders before save.
|
|
ModelValidator func(string) error
|
|
// DefaultTotalChecks holds the default value on creation for the "total_checks" field.
|
|
DefaultTotalChecks int
|
|
// DefaultOkCount holds the default value on creation for the "ok_count" field.
|
|
DefaultOkCount int
|
|
// DefaultOperationalCount holds the default value on creation for the "operational_count" field.
|
|
DefaultOperationalCount int
|
|
// DefaultDegradedCount holds the default value on creation for the "degraded_count" field.
|
|
DefaultDegradedCount int
|
|
// DefaultFailedCount holds the default value on creation for the "failed_count" field.
|
|
DefaultFailedCount int
|
|
// DefaultErrorCount holds the default value on creation for the "error_count" field.
|
|
DefaultErrorCount int
|
|
// DefaultSumLatencyMs holds the default value on creation for the "sum_latency_ms" field.
|
|
DefaultSumLatencyMs int64
|
|
// DefaultCountLatency holds the default value on creation for the "count_latency" field.
|
|
DefaultCountLatency int
|
|
// DefaultSumPingLatencyMs holds the default value on creation for the "sum_ping_latency_ms" field.
|
|
DefaultSumPingLatencyMs int64
|
|
// DefaultCountPingLatency holds the default value on creation for the "count_ping_latency" field.
|
|
DefaultCountPingLatency int
|
|
// DefaultComputedAt holds the default value on creation for the "computed_at" field.
|
|
DefaultComputedAt func() time.Time
|
|
// UpdateDefaultComputedAt holds the default value on update for the "computed_at" field.
|
|
UpdateDefaultComputedAt func() time.Time
|
|
)
|
|
|
|
// OrderOption defines the ordering options for the ChannelMonitorDailyRollup queries.
|
|
type OrderOption func(*sql.Selector)
|
|
|
|
// ByID orders the results by the id field.
|
|
func ByID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByMonitorID orders the results by the monitor_id field.
|
|
func ByMonitorID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldMonitorID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByModel orders the results by the model field.
|
|
func ByModel(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldModel, opts...).ToFunc()
|
|
}
|
|
|
|
// ByBucketDate orders the results by the bucket_date field.
|
|
func ByBucketDate(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldBucketDate, opts...).ToFunc()
|
|
}
|
|
|
|
// ByTotalChecks orders the results by the total_checks field.
|
|
func ByTotalChecks(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldTotalChecks, opts...).ToFunc()
|
|
}
|
|
|
|
// ByOkCount orders the results by the ok_count field.
|
|
func ByOkCount(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldOkCount, opts...).ToFunc()
|
|
}
|
|
|
|
// ByOperationalCount orders the results by the operational_count field.
|
|
func ByOperationalCount(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldOperationalCount, opts...).ToFunc()
|
|
}
|
|
|
|
// ByDegradedCount orders the results by the degraded_count field.
|
|
func ByDegradedCount(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldDegradedCount, opts...).ToFunc()
|
|
}
|
|
|
|
// ByFailedCount orders the results by the failed_count field.
|
|
func ByFailedCount(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldFailedCount, opts...).ToFunc()
|
|
}
|
|
|
|
// ByErrorCount orders the results by the error_count field.
|
|
func ByErrorCount(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldErrorCount, opts...).ToFunc()
|
|
}
|
|
|
|
// BySumLatencyMs orders the results by the sum_latency_ms field.
|
|
func BySumLatencyMs(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldSumLatencyMs, opts...).ToFunc()
|
|
}
|
|
|
|
// ByCountLatency orders the results by the count_latency field.
|
|
func ByCountLatency(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldCountLatency, opts...).ToFunc()
|
|
}
|
|
|
|
// BySumPingLatencyMs orders the results by the sum_ping_latency_ms field.
|
|
func BySumPingLatencyMs(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldSumPingLatencyMs, opts...).ToFunc()
|
|
}
|
|
|
|
// ByCountPingLatency orders the results by the count_ping_latency field.
|
|
func ByCountPingLatency(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldCountPingLatency, opts...).ToFunc()
|
|
}
|
|
|
|
// ByComputedAt orders the results by the computed_at field.
|
|
func ByComputedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldComputedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByMonitorField orders the results by monitor field.
|
|
func ByMonitorField(field string, opts ...sql.OrderTermOption) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborTerms(s, newMonitorStep(), sql.OrderByField(field, opts...))
|
|
}
|
|
}
|
|
func newMonitorStep() *sqlgraph.Step {
|
|
return sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(MonitorInverseTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, MonitorTable, MonitorColumn),
|
|
)
|
|
}
|