mirror of
https://github.com/mudler/LocalAI.git
synced 2026-09-22 06:04:55 -04:00
Fixes 7 doc comments whose names no longer match their function: - ToggleStateModelEndpoint (was ToggleModelEndpoint) - Messages.ToProto (was MessagesToProto) - NewUserCancellableContext (was newUserCancellableContext) - CalculateRMS16 (was calculateRMS16) - NewLocalAIMetricsService + Shutdown TODO (was copied setupOTelSDK) Supersedes #12084 and #12085 (DCO not signed by contributors). Assisted-by: MAKI:regolo/glm5.2 Signed-off-by: Ettore Di Giacinto <mudler@localai.io> Co-authored-by: Ettore Di Giacinto <mudler@localai.io>
65 lines
2.1 KiB
Go
65 lines
2.1 KiB
Go
package monitoring
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/mudler/xlog"
|
|
"go.opentelemetry.io/otel"
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/exporters/prometheus"
|
|
"go.opentelemetry.io/otel/metric"
|
|
metricApi "go.opentelemetry.io/otel/sdk/metric"
|
|
)
|
|
|
|
type LocalAIMetricsService struct {
|
|
Meter metric.Meter
|
|
Provider *metricApi.MeterProvider
|
|
ApiTimeMetric metric.Float64Histogram
|
|
}
|
|
|
|
func (m *LocalAIMetricsService) ObserveAPICall(method string, path string, duration float64) {
|
|
opts := metric.WithAttributes(
|
|
attribute.String("method", method),
|
|
attribute.String("path", path),
|
|
)
|
|
m.ApiTimeMetric.Record(context.Background(), duration, opts)
|
|
}
|
|
|
|
// NewLocalAIMetricsService bootstraps the OpenTelemetry metrics pipeline.
|
|
// If it does not return an error, make sure to call shutdown for proper cleanup.
|
|
func NewLocalAIMetricsService() (*LocalAIMetricsService, error) {
|
|
exporter, err := prometheus.New()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
provider := metricApi.NewMeterProvider(metricApi.WithReader(exporter))
|
|
// Share the provider with the OTel global so packages outside this
|
|
// service (e.g., core/services/routing/billing) see the same Prom
|
|
// exporter when they call otel.Meter(...). Without this, the billing
|
|
// counters would route to the no-op global provider and never reach
|
|
// /metrics — which is exactly the silent-billing-loss class of bug
|
|
// the routing module is designed to surface.
|
|
otel.SetMeterProvider(provider)
|
|
meter := provider.Meter("github.com/mudler/LocalAI")
|
|
|
|
apiTimeMetric, err := meter.Float64Histogram("api_call", metric.WithDescription("api calls"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &LocalAIMetricsService{
|
|
Meter: meter,
|
|
Provider: provider,
|
|
ApiTimeMetric: apiTimeMetric,
|
|
}, nil
|
|
}
|
|
|
|
func (lams LocalAIMetricsService) Shutdown() error {
|
|
// TODO: Not sure how to actually do this:
|
|
//// NewLocalAIMetricsService bootstraps the OpenTelemetry metrics pipeline.
|
|
//// If it does not return an error, make sure to call shutdown for proper cleanup.
|
|
|
|
xlog.Warn("LocalAIMetricsService Shutdown called, but OTelSDK proper shutdown not yet implemented?")
|
|
return nil
|
|
}
|