Files
signoz/pkg/modules/fields/handler.go
2026-08-14 12:25:53 +05:30

15 lines
423 B
Go

package fields
import "net/http"
type Handler interface {
// Gets the fields keys for the given field key selector
GetFieldsKeys(http.ResponseWriter, *http.Request)
// Gets the fields values for the given field value selector
GetFieldsValues(http.ResponseWriter, *http.Request)
// Gets the fields keys the AI observability explorer can filter on
GetAIObservabilityFieldsKeys(http.ResponseWriter, *http.Request)
}