mirror of
https://github.com/eolinker/apinto
synced 2025-10-07 09:41:01 +08:00
14 lines
230 B
Go
14 lines
230 B
Go
package monitor_entry
|
|
|
|
var (
|
|
LabelApi = "api"
|
|
LabelApp = "app"
|
|
LabelUpstream = "upstream"
|
|
)
|
|
|
|
var labels = map[string]string{
|
|
LabelApi: "api_id",
|
|
LabelApp: "application_id",
|
|
LabelUpstream: "service_id",
|
|
}
|