基本介绍

GoFrame命令管理组件也支持跨进程的链路跟踪特性,特别是对于一些临时运行的进程特别有用。

框架整体的链路跟踪都是采用的OpenTelemetry规范。

使用示例

主进程

main.go

  1. package main
  2. import (
  3. "context"
  4. "github.com/gogf/gf/v2/frame/g"
  5. "github.com/gogf/gf/v2/os/gcmd"
  6. "github.com/gogf/gf/v2/os/gctx"
  7. "github.com/gogf/gf/v2/os/gproc"
  8. )
  9. var (
  10. Main = &gcmd.Command{
  11. Name: "main",
  12. Brief: "main process",
  13. Func: func(ctx context.Context, parser *gcmd.Parser) (err error) {
  14. g.Log().Debug(ctx, `this is main process`)
  15. return gproc.ShellRun(ctx, `go run sub.go`)
  16. },
  17. }
  18. )
  19. func main() {
  20. Main.Run(gctx.GetInitCtx())
  21. }

子进程

sub.go

  1. package main
  2. import (
  3. "context"
  4. "github.com/gogf/gf/v2/frame/g"
  5. "github.com/gogf/gf/v2/os/gcmd"
  6. "github.com/gogf/gf/v2/os/gctx"
  7. )
  8. var (
  9. Sub = &gcmd.Command{
  10. Name: "sub",
  11. Brief: "sub process",
  12. Func: func(ctx context.Context, parser *gcmd.Parser) (err error) {
  13. g.Log().Debug(ctx, `this is sub process`)
  14. return nil
  15. },
  16. }
  17. )
  18. func main() {
  19. Sub.Run(gctx.GetInitCtx())
  20. }

执行结果

执行后,终端输出如下:

  1. $ go run main.go
  2. 2022-06-21 20:35:06.196 [DEBU] {00698a61e2a2fa1661da5d7993d72e8c} this is main process
  3. 2022-06-21 20:35:07.482 [DEBU] {00698a61e2a2fa1661da5d7993d72e8c} this is sub process

可以看到,链路信息已经自动传递给了子进程。