mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 07:56:56 +00:00
10 lines
125 B
Go
10 lines
125 B
Go
|
|
package opamp
|
||
|
|
|
||
|
|
type Signal string
|
||
|
|
|
||
|
|
const (
|
||
|
|
Metrics Signal = "metrics"
|
||
|
|
Traces Signal = "traces"
|
||
|
|
Logs Signal = "logs"
|
||
|
|
)
|