21 lines
419 B
Go
21 lines
419 B
Go
|
package metrics
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/authelia/authelia/v4/internal/regulation"
|
||
|
)
|
||
|
|
||
|
// Provider implementation.
|
||
|
type Provider interface {
|
||
|
Recorder
|
||
|
regulation.MetricsRecorder
|
||
|
}
|
||
|
|
||
|
// Recorder of metrics.
|
||
|
type Recorder interface {
|
||
|
RecordRequest(statusCode, requestMethod string, elapsed time.Duration)
|
||
|
RecordVerifyRequest(statusCode string)
|
||
|
RecordAuthenticationDuration(success bool, elapsed time.Duration)
|
||
|
}
|