This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NETOBSERV-58] Merge loki-exporter into kube-enricher (#10)
* merge goflow2-loki-exporter * keep process reading * loki process while enriching * loadLokiConfig check fix * mount loki-exporter-config volume * removed main entry from gitignore * removed unnecessary assert / require * process loki before marshal * extractTimestamp float64 fix * skip json marshal on enrich * getFloat64 logrus warning
- Loading branch information
1 parent
f0494f1
commit 89c8fb9
Showing
3,355 changed files
with
1,055,615 additions
and
99 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
/kube-enricher | ||
coverage.out |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# TODO: agree with the team | ||
linters: | ||
enable: | ||
- deadcode | ||
- errcheck | ||
- errorlint | ||
- cyclop | ||
- errname | ||
- exhaustive | ||
- exportloopref | ||
- gocritic | ||
- goimports | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- revive | ||
- structcheck | ||
- stylecheck | ||
- typecheck | ||
- unused | ||
- varcheck | ||
linters-settings: | ||
stylecheck: | ||
go: "1.17" | ||
gocritic: | ||
enabled-checks: | ||
- hugeParam | ||
- rangeExprCopy | ||
- rangeValCopy | ||
- indexAlloc | ||
- deprecatedComment |
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
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
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
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
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
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,14 +1,19 @@ | ||
module github.com/netobserv/goflow2-kube-enricher | ||
|
||
go 1.12 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/mitchellh/mapstructure v1.1.2 | ||
github.com/go-kit/kit v0.12.0 | ||
github.com/json-iterator/go v1.1.12 | ||
github.com/mitchellh/mapstructure v1.4.2 | ||
github.com/netobserv/loki-client-go v0.0.0-20211018150932-cb17208397a9 | ||
github.com/netsampler/goflow2 v1.0.4 | ||
github.com/prometheus/common v0.31.1 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/stretchr/testify v1.7.0 | ||
google.golang.org/protobuf v1.25.0 | ||
k8s.io/api v0.20.1 | ||
k8s.io/apimachinery v0.20.1 | ||
k8s.io/client-go v0.20.1 | ||
google.golang.org/protobuf v1.27.1 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
k8s.io/api v0.21.5 | ||
k8s.io/apimachinery v0.21.5 | ||
k8s.io/client-go v0.21.5 | ||
) |
Oops, something went wrong.