2022-10-06 20:13:30 +05:30
|
|
|
package model
|
|
|
|
|
|
2023-05-17 16:10:43 +05:30
|
|
|
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"`
|
|
|
|
|
}
|
2022-10-06 20:13:30 +05:30
|
|
|
|
2022-11-24 18:18:19 +05:30
|
|
|
const SmartTraceDetail = "SMART_TRACE_DETAIL"
|
|
|
|
|
const CustomMetricsFunction = "CUSTOM_METRICS_FUNCTION"
|
2023-05-17 16:10:43 +05:30
|
|
|
const OSS = "OSS"
|
|
|
|
|
const QueryBuilderPanels = "QUERY_BUILDER_PANELS"
|
|
|
|
|
const QueryBuilderAlerts = "QUERY_BUILDER_ALERTS"
|