MCPcopy Create free account
hub / github.com/InferCore/InferCore / OTLPHTTPExporter

Struct OTLPHTTPExporter

internal/telemetry/otlp_http_exporter.go:15–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13)
14
15type OTLPHTTPExporter struct {
16 endpoint string
17 httpClient *http.Client
18 retries int
19 batchSize int
20 flushEvery time.Duration
21
22 mu sync.Mutex
23 buffer map[string][]map[string]any
24 lastFlush time.Time
25 sentBatches int
26 sentRecords int
27 lastError string
28 lastStatusCode int
29}
30
31func NewOTLPHTTPExporter(endpoint string, timeout time.Duration, retries, batchSize int, flushEvery time.Duration) *OTLPHTTPExporter {
32 if timeout <= 0 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected