To reduce bot traffic you must login to view /lordwelch/glauth/src/commit/9cf945a1a0760cb9eb3290eeb0b81281a0cb7643/v2/docker/Dockerfile-plugins.
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
}