Implementing Global Request Logging in Spring Boot with ECharts Dashboard Integration
Database SchemaTable CreationCREATE TABLE `request_audit_log` (
`log_id` BIGINT NOT NULL AUTO_INCREMENT,
`created_at` DATETIME NOT NULL COMMENT 'Request timestamp',
`client_ip` VARCHAR(30) NOT NULL COMMENT 'Client IP address',
`api_category` VARCHAR(50) NOT NULL DEFAULT 'General' COMMENT 'API category',
`endpoint_url` VARCHAR(100) NOT ...
Posted on Fri, 08 May 2026 23:38:15 +0000 by Eskimo887
Building Interactive Graph Visualizations with go-echarts in Go
package main
import (
"os"
github.com/go-echarts/go-echarts/v2/charts"
github.com/go-echarts/go-echarts/v2/event"
github.com/go-echarts/go-echarts/v2/opts"
)
func main() {
// Initialize a new graph chart
g := charts.NewGraph()
// Define JavaScript handler for click events
clickHandler := opts.FuncOpts(`(para ...
Posted on Fri, 08 May 2026 12:24:24 +0000 by Monshery