框架性能监控监控框架自身内部操作,例如处理请求、数据库访问等,以便于识别并解决性能瓶颈和优化框架利用率;而应用程序性能监控则关注整个应用程序,包括所有第三方库和服务,提供端到端可视性,以便于识别影响用户体验的性能问题,例如缓慢请求、错误和异常。
Go 框架性能监控与应用程序性能监控(APM)的区别
概述
监控框架性能和应用程序性能至关重要,但两者却有本质区别。
立即学习“go语言免费学习笔记(深入)”;
框架性能监控
- 监控框架内部操作,如请求处理、数据库访问和缓存命中。
- 提供对框架特定技术细节的可见性。
- 有助于识别和解决性能瓶颈,优化框架利用率。
应用程序性能监控(APM)
- 监控整个应用程序,包括所有第三方库和服务。
- 提供从用户端到服务器端的端到端可视性。
- 识别影响应用程序用户体验的性能问题,如缓慢请求、错误和异常。
实战案例
框架性能监控:
1
2
3
4
5
6
7
8
9
10
11
|
import "Github.com/thoas/go-funk"
func main() {
runtime := func () float64 { return runtime.Measure( func () {}) }
stats := funk. Map (runtime, requests).([] float64 )
avgDuration := funk.Mean(stats)
maxDuration := funk.Max(stats)
}
|
应用程序性能监控(APM):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import (
"context"
"fmt"
"net/HTTP"
"time"
"github.com/elastic/go-agent/v2/apm"
)
func main() {
ctx, span := apm.Start(context.Background(), "HTTP Request" )
defer span.End()
req, _ := http.NewRequestWithContext(ctx, "GET" , "HTTPS://example.com" , nil )
client := &http.Client{Timeout: time.Second}
resp, err := client.Do(req)
if err != nil {
span. Error (err)
}
_ = resp.Body. Close ()
span.Context.SetTag( "http.status_code" , resp.StatusCode)
span.Context.SetTag( "http.response_time" , fmt.Sprintf( "%v" , resp.ContentLength))
}
|