Kevin Franklin KimandGitHub ddb9da2034
Test Branch / test (push) Canceled after 0s
Merge pull request #303 from foomo/fix/mongo-collecction-with-indexes-max-time
Fix/mongo collecction with indexes max time
2026-08-07 10:41:45 +02:00
2026-07-31 19:04:08 +02:00
2025-11-07 14:15:03 +01:00
2026-07-31 19:04:08 +02:00
2026-08-06 17:16:54 +02:00
2023-09-08 12:17:23 +02:00
2026-08-06 17:16:54 +02:00
2026-08-06 17:51:05 +02:00
2026-07-29 17:35:44 +02:00
2026-07-29 17:35:44 +02:00
2025-10-02 13:52:18 +02:00
2026-08-06 17:16:54 +02:00
2026-08-07 10:30:27 +02:00
2026-08-01 22:01:43 +02:00
2025-12-15 16:38:43 +01:00
2021-11-19 14:16:09 +01:00
2026-04-22 00:04:52 +02:00
2026-02-17 13:47:18 +01:00
2026-06-17 15:04:11 +02:00
2026-03-16 16:48:45 +01:00
2026-02-24 13:59:01 +01:00
2026-08-06 17:16:54 +02:00
2026-03-03 15:41:43 +01:00
2026-06-17 14:51:52 +02:00
2024-03-15 11:01:25 +01:00
2026-06-17 14:51:52 +02:00
2026-08-06 17:16:54 +02:00
2026-08-06 17:16:54 +02:00
2023-09-08 22:24:31 +02:00
2026-06-17 14:51:52 +02:00
2026-06-22 11:57:29 +02:00
2026-07-31 12:23:37 +02:00
2021-05-18 08:34:47 +02:00
2024-11-22 09:15:21 +01:00
2026-08-06 17:16:54 +02:00
2026-07-31 19:04:08 +02:00
2026-08-05 10:05:34 +02:00
2026-06-19 09:02:45 +02:00
2026-07-31 19:04:08 +02:00
2026-05-29 16:02:02 +02:00
2026-06-19 08:50:40 +02:00
2026-06-19 08:50:40 +02:00
2026-06-19 08:50:40 +02:00

GoDoc Coverage GitHub Stars

keel

keel

Opinionated way to run services on Kubernetes

Stack

  • Zap
  • Nats
  • Viper
  • GoTSRPC
  • Temporal
  • OpenTelemetry

Examples

See the examples folder for usages

package main

import (
  "net/http"

  "github.com/foomo/keel"
  "github.com/foomo/keel/service"
)

func main() {
  svr := keel.NewServer(
    keel.WithHTTPZapService(true),
    keel.WithHTTPViperService(true),
    keel.WithHTTPPrometheusService(true),
  )

  l := svr.Logger()

  svs := newService()

  svr.AddService(
    service.NewHTTP(l, "demo", "localhost:8080", svs),
  )

  svr.Run()
}

func newService() *http.ServeMux {
  s := http.NewServeMux()
  s.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
    w.WriteHeader(http.StatusOK)
    _, _ = w.Write([]byte("OK"))
  })
  return s
}

How to Contribute

Contributions are welcome! Please read the contributing guide.

Contributors

License

Distributed under MIT License, please read the license file for more details.

Made with ♥ foomo by bestbytes

S
Description
No description provided
Readme MIT
4.4 MiB
Languages
Go 99.1%
Makefile 0.9%