mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-26 17:42:01 +08:00
16 lines
287 B
Go
16 lines
287 B
Go
package analytics
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/SigNoz/signoz/pkg/factory"
|
|
"github.com/SigNoz/signoz/pkg/types/analyticstypes"
|
|
)
|
|
|
|
type Analytics interface {
|
|
factory.Service
|
|
|
|
// Sends analytics messages to an analytics backend.
|
|
Send(context.Context, ...analyticstypes.Message)
|
|
}
|