Skip to content

Commit 23cd76b

Browse files
committed
Update readme
1 parent d4284f5 commit 23cd76b

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ event ticks the clock, and logs a message.
2424
This library can be added to a Go project to generate a
2525
[ShiViz](http://bestchai.bitbucket.io/shiviz/)-compatible vector-clock
2626
timestamped 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.
2729
GoVector 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
108110
Here is an example of ShiViz output generated by an RPC client server
109111
interaction
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

test.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
set -e
44
echo "" > 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.
610
for d in $(go list ./... | grep -v vendor); do
711
go test -race -coverprofile=profile.out -covermode=atomic $d
812
if [ -f profile.out ]; then

0 commit comments

Comments
 (0)