migrate from genofire to sum7
This commit is contained in:
parent
61e52bee8b
commit
29fb1c0801
|
@ -1,6 +1,6 @@
|
|||
workspace:
|
||||
base: /go
|
||||
path: src/dev.sum7.eu/genofire/logmania
|
||||
path: src/dev.sum7.eu/sum7/logmania
|
||||
|
||||
pipeline:
|
||||
build:
|
||||
|
|
16
README.md
16
README.md
|
@ -1,9 +1,9 @@
|
|||
# logmania
|
||||
|
||||
[![pipeline status](https://dev.sum7.eu/genofire/logmania/badges/master/pipeline.svg)](https://dev.sum7.eu/genofire/logmania/pipelines)
|
||||
[![coverage report](https://dev.sum7.eu/genofire/logmania/badges/master/coverage.svg)](https://dev.sum7.eu/genofire/logmania/pipelines)
|
||||
[![Go Report Card](https://goreportcard.com/badge/dev.sum7.eu/genofire/logmania)](https://goreportcard.com/report/dev.sum7.eu/genofire/logmania)
|
||||
[![GoDoc](https://godoc.org/dev.sum7.eu/genofire/logmania?status.svg)](https://godoc.org/dev.sum7.eu/genofire/logmania)
|
||||
[![pipeline status](https://dev.sum7.eu/sum7/logmania/badges/master/pipeline.svg)](https://dev.sum7.eu/genofire/logmania/pipelines)
|
||||
[![coverage report](https://dev.sum7.eu/sum7/logmania/badges/master/coverage.svg)](https://dev.sum7.eu/genofire/logmania/pipelines)
|
||||
[![Go Report Card](https://goreportcard.com/badge/dev.sum7.eu/sum7/logmania)](https://goreportcard.com/report/dev.sum7.eu/genofire/logmania)
|
||||
[![GoDoc](https://godoc.org/dev.sum7.eu/sum7/logmania?status.svg)](https://godoc.org/dev.sum7.eu/genofire/logmania)
|
||||
|
||||
|
||||
This is a little logging server.
|
||||
|
@ -32,14 +32,14 @@ configuration live possible by bot (on input e.g. xmpp)
|
|||
|
||||
Latest Build binary from ci here:
|
||||
|
||||
[Download All](https://dev.sum7.eu/genofire/logmania/-/jobs/artifacts/master/download/?job=build-my-project) (with config example)
|
||||
[Download All](https://dev.sum7.eu/sum7/logmania/-/jobs/artifacts/master/download/?job=build-my-project) (with config example)
|
||||
|
||||
[Download Binary](https://dev.sum7.eu/genofire/logmania/-/jobs/artifacts/master/raw/bin/logmania?inline=false&job=build-my-project)
|
||||
[Download Binary](https://dev.sum7.eu/sum7/logmania/-/jobs/artifacts/master/raw/bin/logmania?inline=false&job=build-my-project)
|
||||
|
||||
#### Build
|
||||
|
||||
```bash
|
||||
go get -u dev.sum7.eu/genofire/logmania
|
||||
go get -u dev.sum7.eu/sum7/logmania
|
||||
```
|
||||
|
||||
## Configure
|
||||
|
@ -49,4 +49,4 @@ see `config_example.toml`
|
|||
|
||||
## Related Projects
|
||||
|
||||
- [hook2xmpp](https://dev.sum7.eu/genofire/hook2xmpp) for e.g. grafana, alertmanager(prometheus), gitlab, git, circleci
|
||||
- [hook2xmpp](https://dev.sum7.eu/sum7/hook2xmpp) for e.g. grafana, alertmanager(prometheus), gitlab, git, circleci
|
||||
|
|
|
@ -3,7 +3,7 @@ package bot
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
)
|
||||
|
||||
func NewFilter(db *database.DB) *Command {
|
||||
|
|
|
@ -3,7 +3,7 @@ package bot
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
timeago "github.com/ararog/timeago"
|
||||
)
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ package bot
|
|||
import (
|
||||
"github.com/mattn/go-shellwords"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
)
|
||||
|
||||
type Bot struct {
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"github.com/bdlm/log"
|
||||
logstd "github.com/bdlm/std/logger"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
)
|
||||
|
||||
func NewPriority(db *database.DB) *Command {
|
||||
|
|
|
@ -3,7 +3,7 @@ package bot
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
)
|
||||
|
||||
func NewReplace(db *database.DB) *Command {
|
||||
|
|
|
@ -3,7 +3,7 @@ package bot
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
)
|
||||
|
||||
func NewSend(db *database.DB) *Command {
|
||||
|
|
|
@ -11,13 +11,13 @@ import (
|
|||
|
||||
"dev.sum7.eu/genofire/golang-lib/file"
|
||||
"dev.sum7.eu/genofire/golang-lib/worker"
|
||||
"dev.sum7.eu/genofire/logmania/bot"
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/genofire/logmania/input"
|
||||
allInput "dev.sum7.eu/genofire/logmania/input/all"
|
||||
"dev.sum7.eu/genofire/logmania/lib"
|
||||
"dev.sum7.eu/genofire/logmania/output"
|
||||
allOutput "dev.sum7.eu/genofire/logmania/output/all"
|
||||
"dev.sum7.eu/sum7/logmania/bot"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/input"
|
||||
allInput "dev.sum7.eu/sum7/logmania/input/all"
|
||||
"dev.sum7.eu/sum7/logmania/lib"
|
||||
"dev.sum7.eu/sum7/logmania/output"
|
||||
allOutput "dev.sum7.eu/sum7/logmania/output/all"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -3,7 +3,7 @@ package all
|
|||
import (
|
||||
"github.com/bdlm/log"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/input"
|
||||
"dev.sum7.eu/sum7/logmania/input"
|
||||
)
|
||||
|
||||
type Input struct {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package all
|
||||
|
||||
import (
|
||||
_ "dev.sum7.eu/genofire/logmania/input/journald_json"
|
||||
_ "dev.sum7.eu/genofire/logmania/input/syslog"
|
||||
_ "dev.sum7.eu/sum7/logmania/input/journald_json"
|
||||
_ "dev.sum7.eu/sum7/logmania/input/syslog"
|
||||
)
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"github.com/bdlm/log"
|
||||
"github.com/mitchellh/mapstructure"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/input"
|
||||
"dev.sum7.eu/sum7/logmania/input"
|
||||
)
|
||||
|
||||
const inputType = "journald_json"
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"github.com/bdlm/log"
|
||||
logstd "github.com/bdlm/std/logger"
|
||||
|
||||
libSyslog "dev.sum7.eu/genofire/logmania/lib/syslog"
|
||||
libSyslog "dev.sum7.eu/sum7/logmania/lib/syslog"
|
||||
)
|
||||
|
||||
var SyslogPriorityMap = map[int]logstd.Level{
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"github.com/bdlm/log"
|
||||
"github.com/mitchellh/mapstructure"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/input"
|
||||
"dev.sum7.eu/sum7/logmania/input"
|
||||
)
|
||||
|
||||
const inputType = "syslog"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package lib
|
||||
|
||||
// Struct of the configuration
|
||||
// e.g. under dev.sum7.eu/genofire/logmania/logmania_example.conf
|
||||
// e.g. under dev.sum7.eu/sum7/logmania/logmania_example.conf
|
||||
type Config struct {
|
||||
Debug bool `toml:"debug"`
|
||||
DB string `toml:"database"`
|
||||
|
|
2
main.go
2
main.go
|
@ -1,6 +1,6 @@
|
|||
package main
|
||||
|
||||
import "dev.sum7.eu/genofire/logmania/cmd"
|
||||
import "dev.sum7.eu/sum7/logmania/cmd"
|
||||
|
||||
func main() {
|
||||
cmd.Execute()
|
||||
|
|
|
@ -4,9 +4,9 @@ import (
|
|||
"github.com/bdlm/log"
|
||||
"time"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/bot"
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/genofire/logmania/output"
|
||||
"dev.sum7.eu/sum7/logmania/bot"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/output"
|
||||
)
|
||||
|
||||
var logger = log.WithField("notify", "all")
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package all
|
||||
|
||||
import (
|
||||
_ "dev.sum7.eu/genofire/logmania/output/file"
|
||||
_ "dev.sum7.eu/genofire/logmania/output/xmpp"
|
||||
_ "dev.sum7.eu/sum7/logmania/output/file"
|
||||
_ "dev.sum7.eu/sum7/logmania/output/xmpp"
|
||||
)
|
||||
|
|
|
@ -8,9 +8,9 @@ import (
|
|||
"github.com/bdlm/log"
|
||||
"github.com/mitchellh/mapstructure"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/bot"
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/genofire/logmania/output"
|
||||
"dev.sum7.eu/sum7/logmania/bot"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/output"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -3,8 +3,8 @@ package output
|
|||
import (
|
||||
"github.com/bdlm/log"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/bot"
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/bot"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
)
|
||||
|
||||
var Register = make(map[string]Init)
|
||||
|
|
|
@ -8,9 +8,9 @@ import (
|
|||
"gosrc.io/xmpp"
|
||||
"gosrc.io/xmpp/stanza"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/bot"
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/genofire/logmania/output"
|
||||
"dev.sum7.eu/sum7/logmania/bot"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/output"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"gosrc.io/xmpp"
|
||||
"gosrc.io/xmpp/stanza"
|
||||
|
||||
"dev.sum7.eu/genofire/logmania/database"
|
||||
"dev.sum7.eu/sum7/logmania/database"
|
||||
)
|
||||
|
||||
func (out *Output) Join(to string) {
|
||||
|
|
Loading…
Reference in New Issue