mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-09 16:10:00 +08:00
11 lines
171 B
Go
11 lines
171 B
Go
|
|
package metric
|
||
|
|
|
||
|
|
// VectorOpts general configuration
|
||
|
|
type VectorOpts struct {
|
||
|
|
Namespace string
|
||
|
|
Subsystem string
|
||
|
|
Name string
|
||
|
|
Help string
|
||
|
|
Labels []string
|
||
|
|
}
|