Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
Controller definition.
func NewController ¶
func NewController(serv *Service) *Controller
NewController creates a Controller instance.
func (*Controller) HealthCheck ¶
func (c *Controller) HealthCheck(ctx *fiber.Ctx) error
HealthCheck handler for the endpoint /health.
func (*Controller) ReadyCheck ¶
func (c *Controller) ReadyCheck(ctx *fiber.Ctx) error
ReadyCheck handler for the endpoint /ready
type MongoConnections ¶
type MongoConnections struct { Current int32 `bson:"current"` Available int32 `bson:"available"` TotalCreated int32 `bson:"totalCreated"` }
MongoConnections represents a mongo server connection.
type MongoStatus ¶
type MongoStatus struct { Ok int32 `bson:"ok"` Host string `bson:"host"` Version string `bson:"version"` Process string `bson:"process"` Pid int32 `bson:"pid"` Uptime int32 `bson:"uptime"` Connections *MongoConnections `bson:"connections"` }
MongoStatus represent a mongo server status.
type Repository ¶
type Repository struct {
// contains filtered or unexported fields
}
Repository definition.
func NewRepository ¶
func NewRepository(db *mongo.Database, logger *zap.Logger) *Repository
NewRepository create a new Repository.
func (*Repository) GetMongoStatus ¶
func (r *Repository) GetMongoStatus(ctx context.Context) (*MongoStatus, error)
GetMongoStatus get mongo server status
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
func NewService ¶
func NewService(dao *Repository, logger *zap.Logger) *Service
NewService create a new governor.Service.
Click to show internal directories.
Click to hide internal directories.