Skip to content

v0.3.0

Compare
Choose a tag to compare
@aryanmehrotra aryanmehrotra released this 19 Feb 12:37
· 1575 commits to main since this release
80cdfd4

Release v0.3.0

✨ Features

  • Migrations Support for MySQL and REDIS.

  • Metrics - The following metrics are now being pushed by default.
    System Info
    - app_go_routines : Number of Go routines running.
    - app_sys_memory_alloc : Number of bytes allocated for heap objects.
    - app_sys_total_alloc : Number of cumulative bytes allocated for heap objects.
    - app_go_numGC : Number of completed Garbage Collector cycles.
    - app_go_sys : Number of total bytes of memory.

    HTTP
    - app_http_response : Response time of HTTP requests in seconds.
    - app_http_service_response : Response time of HTTP service requests in seconds.

    Redis
    - app_redis_stats : Observes the response time for Redis commands.

    SQL
    - app_sql_stats : Histogram metric response time of HTTP requests in seconds.
    - app_sql_open_connections : Number of open SQL connections.
    - app_sql_inUse_connections : Number of inUse SQL connections.

🐞 Fixes

  • Add PUT Method in circuit breaker.
  • Add check to handle panic when the command line application's last argument is -.