mortar

module
v1.0.34 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 8, 2023 License: MIT

README

Mortar

Go codecov PkgGoDev Go Report Card

Mortar is a GO framework/library for building gRPC (and REST) web services. Mortar has out-of-the-box support for configuration, application metrics, logging, tracing, profiling, dependency injection and more. While it comes with predefined defaults, Mortar gives you total control to fully customize it.

Demo

Clone this demo repository to better understand some of Mortar capabilities.

When you done, read the documentation.

Service Template

To help you bootstrap your services with Mortar here you can find a template. Read its README first.

Features

  • Bundled Grpc-Gateway (REST Reverse-Proxy).

  • Dependency Injection using Uber-FX.

  • Pimped *http.Client with interceptors support.

  • Abstract support for Logging, Configuration, Tracing and Monitoring libraries. Use provided wrappers or your own.

  • Internal HTTP Handlers

    • Profiling http://.../debug/pprof
    • Debug http://.../debug/*
    • Configuration http://.../self/config
    • Build Information http://.../self/build
    • Health http://.../health
  • Server/Client Interceptors both for gRPC and HTTP, you can choose which to use and/or add your own.

    Some examples

    • HTTP Headers can be forwarded to next hop, defined by list.
    • HTTP Headers can be included in logs, defined by list.
    • Made available in ctx.Context via gRPC incoming Metadata.
    • Automatic monitoring and tracing (if enabled) for every RPC defined by the API.

...and more.

Telemetry (Everything connected)
  • Logs have Tracing Information traceId=6ff7e7e38d1e86f across services logs

  • Also visible in Jaeger traceId=6ff7e7e38d1e86f if it's sampled. jaeger

Support for *http.Client Interceptors, so you can
  • Add request and response info to Trace

  • Log/Dump requests and/or responses when http request fails.

    return func(req *http.Request, handler client.HTTPHandler) (resp *http.Response, err error) {
        var reqBytes, respBytes []byte
        // If the response is Bad Request, log both Request and Response
        reqBytes, _ = httputil.DumpRequestOut(req, true) // it can be nil and it's ok
        if resp, err = handler(req); err == nil && resp.StatusCode >= http.StatusBadRequest {
            respBytes, _ = httputil.DumpResponse(resp, true) // it can be nil
            logger.WithError(fmt.Errorf("http request failed")).
            WithField("status",resp.StatusCode).
            Warn(req.Context(), "\nRequest:\n%s\n\nResponse:\n%s\n", reqBytes, respBytes)
        }
        return
    }
    

    http_client

  • Alter requests and/or responses (useful in Tests)

    func(*http.Request, clientInt.HTTPHandler) (*http.Response, error) {
        // special case, don't go anywhere just return the response
        return &http.Response{
            Status:        "200 OK",
            StatusCode:    200,
            Proto:         "HTTP/1.1",
            ProtoMajor:    1,
            ProtoMinor:    1,
            ContentLength: 11,
            Body:          ioutil.NopCloser(strings.NewReader("car painted")),
        }, nil
    }
    
Monitoring/Metrics support

Export to either Prometheus/Datadog/statsd/etc, it's your choice. Mortar only provides the Interface and also caches the metrics so you don't have to.

counter := w.deps.Metrics.WithTags(monitor.Tags{
 "color":   request.GetDesiredColor(),
 "success": fmt.Sprintf("%t", err == nil),
}).Counter("paint_desired_color", "New paint color for car")

counter.Inc()

counter is actually a singleton, uniqueness calculated here

grafana

For more information about Mortar Monitoring read here.

Additional Features
  • /debug/pprof and other useful handlers
  • Use config_test.yml during tests to override values in config.yml, it saves time.

There are some features not listed here, please check the Documentation for more.

Documentation

Mortar is not a drop-in replacement.

It's important to read its Documentation first.

Directories

Path Synopsis
auth
jwt
http
server/health
Package health is a reverse proxy.
Package health is a reverse proxy.
server/proto
Package demopackage is a reverse proxy.
Package demopackage is a reverse proxy.
interfaces
auth/jwt/mock
Package mock_jwt is a generated GoMock package.
Package mock_jwt is a generated GoMock package.
cfg
cfg/keys
Package confkeys defines all the configuration key alias that configure all the bundled features of mortar.
Package confkeys defines all the configuration key alias that configure all the bundled features of mortar.
cfg/mock
Package mock_cfg is a generated GoMock package.
Package mock_cfg is a generated GoMock package.
http/client/mock
Package mock_client is a generated GoMock package.
Package mock_client is a generated GoMock package.
http/server/mock
Package mock_server is a generated GoMock package.
Package mock_server is a generated GoMock package.
log
log/mock
Package mock_log is a generated GoMock package.
Package mock_log is a generated GoMock package.
monitor/mock
Package mock_monitor is a generated GoMock package.
Package mock_monitor is a generated GoMock package.
trace/mock
Package mock_trace is a generated GoMock package.
Package mock_trace is a generated GoMock package.
middleware

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL