GithubHelp home page GithubHelp logo

cat.go's Introduction

#How to use cat.go Package cat works as a client for Central Application Tracking(CAT).

###Import import cat "/your/path/to/cat" ###Config cat.DOMAIN = "your appid" cat.HOSTNAME = "your hostname" //optional cat.IP = "your hostip" //optional cat.TEMPFILE = ".cat" //optional, "your/path/to/.cat" cat.CAT_HOST = cat.UAT //or "http://cat.uat.qa.nt.ctripcorp.com" ###Use Transaction mycat := cat.Instance() func() { t := mycat.NewTransaction("URL", "Page") defer func() { err := recover() t.SetStatus(err) t.Complete() }() // do your bussiness here t.Add("k1", "v1") t.Add("k2", "v2") t.Add("k3", "v3") }() ###Use Event mycat := cat.Instance() func() { e := mycat.NewEvent("Review", "New") e.Add("id", 12345) e.Add("user", "john") e.SetStatus("0") e.Complete() }() ###Use Heartbeat mycat := cat.Instance() func() { h := mycat.NewHeartbeat("Heartbeat", "192.168.141.131") h.Set("System", "CPU", "0.3") h.Set("System", "DISK", "0.9") h.SetStatus("0") h.Complete() }() ###Log Error As Event mycat := cat.Instance() func() { err, ret := someMethod() mycat.LogError(err) }()

cat.go's People

Contributors

phyxdown avatar qmwu2000 avatar sdgdsffdsfff avatar wuchengcheng2016 avatar

Watchers

 avatar

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.