gitextract_xefxug8p/ ├── .circleci/ │ └── config.yml ├── .gitignore ├── .idea/ │ ├── hollowtrees.iml │ └── modules.xml ├── .licensei.toml ├── Dockerfile ├── Dockerfile.local ├── LICENSE.md ├── Makefile ├── README.md ├── charts/ │ └── hollowtrees-with-ps/ │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates/ │ │ ├── _helpers.tpl │ │ ├── configmap-ht.yaml │ │ ├── configmap-htpsp.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ └── values.yaml ├── cmd/ │ └── daemon/ │ ├── build.go │ ├── configuration.go │ └── main.go ├── config.yaml.dist ├── docs/ │ └── DEVELOPMENT.md ├── examples/ │ └── grpc_plugin/ │ └── main.go ├── go.mod ├── go.sum ├── internal/ │ ├── ce/ │ │ └── ce.go │ ├── flows/ │ │ ├── config.go │ │ ├── event_dispatcher.go │ │ ├── eventflow.go │ │ ├── flows.go │ │ ├── manager.go │ │ ├── option.go │ │ └── store.go │ ├── platform/ │ │ ├── config/ │ │ │ ├── config.go │ │ │ └── error_handler.go │ │ ├── errors/ │ │ │ ├── handler.go │ │ │ └── keyvals.go │ │ ├── gin/ │ │ │ ├── correlationid/ │ │ │ │ ├── logger.go │ │ │ │ └── middleware.go │ │ │ └── log/ │ │ │ └── middleware.go │ │ ├── healthcheck/ │ │ │ ├── config.go │ │ │ └── healthcheck.go │ │ └── log/ │ │ ├── config.go │ │ ├── logger.go │ │ └── logrus_adapter.go │ ├── plugin/ │ │ ├── config.go │ │ ├── grpc.go │ │ ├── internal.go │ │ ├── manager.go │ │ └── plugin.go │ └── promalert/ │ ├── alert.go │ ├── config.go │ ├── event_dispatcher.go │ └── promalert.go ├── pkg/ │ ├── auth/ │ │ └── auth.go │ └── grpcplugin/ │ ├── handler.go │ ├── proto/ │ │ ├── event.pb.go │ │ └── event.proto │ └── server.go └── scripts/ └── check-header.sh