mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-28 22:01:58 +08:00
14 lines
478 B
Go
14 lines
478 B
Go
package thirdPartyApi
|
|
|
|
import v3 "github.com/SigNoz/signoz/pkg/query-service/model/v3"
|
|
|
|
type ThirdPartyApis struct {
|
|
Start int64 `json:"start"`
|
|
End int64 `json:"end"`
|
|
ShowIp bool `json:"show_ip,omitempty"`
|
|
Domain int64 `json:"domain,omitempty"`
|
|
Endpoint string `json:"endpoint,omitempty"`
|
|
Filters v3.FilterSet `json:"filters,omitempty"`
|
|
GroupBy []v3.AttributeKey `json:"groupBy,omitempty"`
|
|
}
|