Git Product home page Git Product logo

costrace's Introduction

constrace

trace the function

    ctx := costrace.New(context.Background(), "trace the function")
    defer func() {
        costrace.Done(ctx)
        fmt.Print(costrace.ToString(ctx))
    }()
    costrace.Trace(ctx, "func1", func(context.Context) {
        time.Sleep(time.Second)
    })
    sctx := costrace.SegmentTrace(ctx, "func2")
    time.Sleep(time.Second)
    costrace.SegmentDone(sctx)
    
    // nest
    sctx = costrace.SegmentTrace(ctx, "nest-func1")
    time.Sleep(time.Second)
    sctx2 := costrace.SegmentTrace(sctx, "nest-func2")
    time.Sleep(time.Second)
    costrace.SegmentDone(sctx2)
    costrace.SegmentDone(sctx)
trace the function (4013ms 100%)
├─func1 (1004ms 25%)
├─func2 (1002ms 24%)
└─nest-func1 (2005ms 49%)
  └─nest-func2 (1003ms 50%)

trace the parallel function

	ctx := costrace.New(context.Background(), "trace the parallel function")
	defer func() {
		costrace.Done(ctx)
		fmt.Print(costrace.ToString(ctx))
	}()

	const parallel = 3
	var wg sync.WaitGroup
	wg.Add(3)

	pctx := costrace.ParallelTrace(ctx, parallel)
	go func() {
		defer wg.Done()
		costrace.Trace(pctx, "func1", func(context.Context) {
			time.Sleep(time.Second)
		})
	}()

	go func() {
		defer wg.Done()
		sctx := costrace.SegmentTrace(pctx, "func2")
		time.Sleep(time.Second)
		costrace.SegmentDone(sctx)
	}()

	go func() {
		defer wg.Done()
		// nest
		sctx := costrace.SegmentTrace(pctx, "nest-func1")
		time.Sleep(time.Second)
		sctx2 := costrace.SegmentTrace(sctx, "nest-func2")
		time.Sleep(time.Second)
		costrace.SegmentDone(sctx2)
		costrace.SegmentDone(sctx)
	}()
	wg.Wait()
	costrace.ParallelDone(pctx)
trace the parallel function (2005ms 100%)
└─[parallel] (2005ms 100%)
  ├─nest-func1 (2005ms 100%)
  │  └─nest-func2 (1005ms 50%)
  ├─func2 (1000ms 49%)
  └─func1 (1000ms 49%)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.