mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00
18 lines
565 B
Go
18 lines
565 B
Go
package model
|
|
|
|
type FeatureSet []Feature
|
|
type Feature struct {
|
|
Name string `db:"name" json:"name"`
|
|
Active bool `db:"active" json:"active"`
|
|
Usage int64 `db:"usage" json:"usage"`
|
|
UsageLimit int64 `db:"usage_limit" json:"usage_limit"`
|
|
Route string `db:"route" json:"route"`
|
|
}
|
|
|
|
const SmartTraceDetail = "SMART_TRACE_DETAIL"
|
|
const CustomMetricsFunction = "CUSTOM_METRICS_FUNCTION"
|
|
const OSS = "OSS"
|
|
const QueryBuilderPanels = "QUERY_BUILDER_PANELS"
|
|
const QueryBuilderAlerts = "QUERY_BUILDER_ALERTS"
|
|
const UseSpanMetrics = "USE_SPAN_METRICS"
|