GoScope
Watch incoming requests and outgoing responses from your Go Gin application. All is logged into a database for persistence and paginated for performance.
The aim of this application is to be a plug and play addition to your application, not a hurdle, thus to setup, you only require a one-liner in your main function.
Once all is set up you can access the web interface by visiting http://your-app.com/goscope
.
You should protect this route from external/public access so that you do not leak important application data.
Setup
The application requires that your .env
file contains the following variables:
APPLICATION_ID: "application-id"
APPLICATION_NAME: "Your Application Name"
APPLICATION_TIMEZONE: "Europe/Amsterdam"
GOSCOPE_ENTRIES_PER_PAGE: 100
# for MySQL
GOSCOPE_DATABASE_CONNECTION: "root:root@tcp(127.0.0.1:3306)/go_scope"
GOSCOPE_DATABASE_TYPE: "mysql"
# for SQLite
GOSCOPE_DATABASE_CONNECTION: "file:/Users/joe/workspace/goscope/setup/sqlite.sqlite"
GOSCOPE_DATABASE_TYPE: "sqlite3"
# adjust to preference, if following are not specified, these are the defaults
GOSCOPE_DATABASE_MAX_OPEN_CONNECTIONS: 10
GOSCOPE_DATABASE_MAX_IDLE_CONNECTIONS: 5
GOSCOPE_DATABASE_MAX_CONN_LIFETIME: 10
# optional boolean value, will disable the GoScope frontend
GOSCOPE_DISABLE_FRONTEND: false
GoScope has been extended to work with a repository pattern, thus has the capability of supporting any database driver/engine that will work with Go and uses the sql
package (returning *sql.Rows
or *sql.Row
).
NoSQL databases are not currently supported, although we think that it would be a great addition, so if you have the know-how please don't hesitate to make a Pull Request.
In the .env file you can specify either the mysql
driver, postgres
driver, or sqlite3
driver, which will use the github.com/go-sql-driver/mysql
, github.com/lib/pq
or github.com/mattn/go-sqlite3
respectively. Ensure you have the correct connection string in your env file.
The application expects a database with a setup that can be recreated by taking a look at the setup
folder in the root of this repository.
Example
Example implementation code, please note that you should use plain gin without middlewares, since GoScope will use Gin Gonic's logger and recovery middlewares, but with a customized twist, thus the requirement is that initially you have a clean gin.Engine
instance.
package main
import (
"github.com/gin-gonic/gin"
"github.com/joho/godotenv"
"github.com/averageflow/goscope/src/goscope"
)
func main(){
router := gin.New()
_ = godotenv.Load()
// Provide a route for the GoScope UI, which
// can be customized i.e. to use a Auth middleware:
//
// ui := router.Group("/goscope").Use(gin.BasicAuth(gin.Accounts{
// "secret_user": "secret_password",
// }))
// goscope.Setup(router, ui)
goscope.Setup(router, router.Group("/goscope"))
router.GET("/ping")
}
Contributing
Your help and ideas are needed to keep this project moving forward to become a more powerful tool commit by commit. Any bug that you may find is something that will make GoScope more robust. Whether you are more front-end or back-end there is work here for you. Take a look at the contributing guidelines
API Documentation
GoScope is in its essence a middleware, a backend in Go and a front-end in Vue.js, thus you can hook onto the backend with any tool of your choice, being it other kinds of front-ends or monitoring tools like Zabbix or others.
For that purpose please find here the API spec.
Request & Response
In order to understand possible unexpected situations or simply to reassure you that everything is working correctly, GoScope provides more detailed information about request and response, including status codes and request/response bodies, as well as any useful information. Any help with expanding this would be greatly appreciated.
Logging
GoScope hooks into the logging mechanism of your application by using a custom io.Writer
.
This prints to the console for ease of development and saves the logs into the database, for further displaying in the web environment.
Thus you only need to call your usual log.Println
or log.Printf
statements or any variants of the log writing package, and that will seamlessly be picked up by GoScope.
GoScope is constantly improving and currently already can show some system information about the current host. There are plans to expand on this and help is welcome with database info, operating system, etc.
Showcase