File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed
Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ event ticks the clock, and logs a message.
2424This library can be added to a Go project to generate a
2525[ ShiViz] ( http://bestchai.bitbucket.io/shiviz/ ) -compatible vector-clock
2626timestamped log of events in a concurrent or distributed system.
27+ This library can also be used to generate [ TSViz] ( https://bestchai.bitbucket.io/tsviz/ ) -compatible
28+ log of events.
2729GoVector is compatible with Go 1.4+
2830
2931* govec/ : Contains the Library and all its dependencies
@@ -108,6 +110,23 @@ Here is a sample output of the priority logger
108110Here is an example of ShiViz output generated by an RPC client server
109111interaction
110112![ ShivizExample.png] ( .images/shiviz_output.png )
113+
114+ ### Dependencies
115+
116+ GoVector has the following dependencies :
117+
118+ + [ msgpack] ( https://github.com/vmihailenco/msgpack )
119+ + [ go-colortext] ( https://github.com/daviddengcn/go-colortext )
120+
121+ ### Contributors
122+
123+ + Ivan Beschastnikh
124+ + Mike Fink
125+ + Stewart Grant
126+ + Clement Fung
127+ + Fabian Ruffy
128+ + Vaastav Anand
129+
111130<!-- July 2017: Brokers are no longer supported, maybe they will come back.
112131
113132### VectorBroker
Original file line number Diff line number Diff line change 33set -e
44echo " " > coverage.txt
55
6+ # Run the coverage test on every single subdirectory
7+ # except the ones that are in the vendor package.
8+ # Currently GoVector has no vendor packages but this
9+ # code is left in as it is vendor-proof.
610for d in $( go list ./... | grep -v vendor) ; do
711 go test -race -coverprofile=profile.out -covermode=atomic $d
812 if [ -f profile.out ]; then
You can’t perform that action at this time.
0 commit comments