To reduce bot traffic you must login to view /lordwelch/glauth/src/commit/0b7910c03cc01ddc1795c75983318702b9f4fd6c/v2/pkg/handler.
The GitHub login only links via username.
Files

14 lines
274 B
Go

package monitoring
import "github.com/glauth/ldap"
type MonitorInterface interface {
SetResponseTimeMetric(map[string]string, float64) error
SetLDAPMetric(map[string]string, float64) error
}
type LDAPServerInterface interface {
SetStats(bool)
GetStats() ldap.Stats
}