mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-30 18:12:01 +08:00

* feat: add APIs for third party api feat Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com> * fix: minor fixes Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com> * test: add unit tests Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com> * chore: minor changes Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com> * fix: review comments Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com> * test: add unit tests Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com> * chore: cleanup Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com> * chore: review comments Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com> * chore: review comments Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com> --------- Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com>
14 lines
473 B
Go
14 lines
473 B
Go
package thirdPartyApi
|
|
|
|
import v3 "go.signoz.io/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"`
|
|
}
|