Browse Source

Initial project structure

Oz Tiram 5 years ago
commit
65aca9e16b
7 changed files with 109 additions and 0 deletions
  1. 2 0
      .gitignore
  2. 16 0
      Makefile
  3. 54 0
      README.md
  4. 0 0
      bin/.keep
  5. 10 0
      cmd/main.go
  6. 13 0
      gupta.go
  7. 14 0
      gupta_test.go

+ 2 - 0
.gitignore

@@ -0,0 +1,2 @@
+bin/gupta
+*.sw[o,p]

+ 16 - 0
Makefile

@@ -0,0 +1,16 @@
+DEST ?= /usr/bin/
+
+test:
+	go test -v .
+
+
+build:
+	cd cmd
+	go build -o bin/gupta cmd/main.go
+
+install:
+	install -m 755 bin/gupta $(DEST)
+
+
+uinnstall:
+	rm -vi $(PATH)/gupta

+ 54 - 0
README.md

@@ -0,0 +1,54 @@
+Goopta - Go + Opta
+==================
+
+A minial metric collection system which polls:
+
+ * Load average values
+ * Derived CPU percentage values
+ * Network interface statistics
+ * Disk partition usage in percent
+ * Memory usage in percent
+
+Fondly named gupta, for my bud.
+
+Building
+--------
+You need go in version 1.12 at least.
+On a linux based system just type
+
+```
+$ make build
+```
+
+This will place the built program in the `bin/` directory.
+
+Installing
+----------
+
+To install the program into your system:
+
+```
+$ sudo make install
+```
+
+
+Testing
+-------
+On a linux based system just type `make build`
+
+```
+$ make test
+```
+
+Usage
+-----
+
+gutpa [-c|-l|-m|-p <partition>|-n <interface>] -i <sec>
+
+
+Removing
+--------
+
+```
+$ sudo make uninstall
+```

+ 0 - 0
bin/.keep


+ 10 - 0
cmd/main.go

@@ -0,0 +1,10 @@
+package main
+
+import (
+	"fmt"
+	"github.com/oz123/gupta"
+)
+
+func main() {
+	fmt.Println(gupta.Hello())
+}

+ 13 - 0
gupta.go

@@ -0,0 +1,13 @@
+package gupta
+
+import (
+	"fmt"
+)
+
+func Hello() string {
+	return "Hello, world"
+}
+
+func main() {
+	fmt.Println(Hello())
+}

+ 14 - 0
gupta_test.go

@@ -0,0 +1,14 @@
+package gupta
+
+import (
+	"testing"
+)
+
+func TestHello(t *testing.T) {
+	got := Hello()
+	want := "Hello, world"
+
+	if got != want {
+		t.Errorf("got %q want %q", got, want)
+	}
+}