-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from tobert/fix-install
README and dependency updates
- Loading branch information
Showing
3 changed files
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,7 @@ and has some build problems. | |
I wrote this is so that Apache Cassandra users can see if ssTables are being | ||
cached. If $GOPATH/bin is in your PATH, this will get it installed: | ||
|
||
go get golang.org/x/sys/unix | ||
go get github.com/tobert/pcstat/pcstat | ||
go install github.com/tobert/pcstat@latest | ||
pcstat /var/lib/cassandra/data/*/*/*-Data.db | ||
|
||
If you don't want to mess around with building the software, binaries are provided | ||
|
@@ -170,7 +169,7 @@ atobey@brak ~/src/pcstat $ ./pcstat testfile | |
|
||
## Requirements | ||
|
||
Go 1.4 or higher and golang.org/x/sys/unix. | ||
Go 1.17 or higher. | ||
|
||
From the mincore(2) man page: | ||
|
||
|
@@ -180,7 +179,7 @@ From the mincore(2) man page: | |
|
||
## Author | ||
|
||
A. Tobey <[email protected]> @MissAmyTobey | ||
A. Tobey <[email protected]> @renice@hachyderm.io | ||
|
||
## License | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module github.com/tobert/pcstat | ||
|
||
go 1.13 | ||
go 1.17 | ||
|
||
require golang.org/x/sys v0.0.0-20210917161153-d61c044b1678 | ||
require golang.org/x/sys v0.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
golang.org/x/sys v0.0.0-20210917161153-d61c044b1678 h1:J27LZFQBFoihqXoegpscI10HpjZ7B5WQLLKL2FZXQKw= | ||
golang.org/x/sys v0.0.0-20210917161153-d61c044b1678/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | ||
golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA= | ||
golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= |