mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 07:12:20 +08:00

* add initial structure for investigations app backedn * update version * Fix codegen & paths Signed-off-by: Igor Suleymanov <igor.suleymanov@grafana.com> * Fix Go workspace and CODEOWNERS Signed-off-by: Igor Suleymanov <igor.suleymanov@grafana.com> * update kinds for investigation * update dockerfile * update codeowners * update dependabot * update golangci * add investigation app and watcher * run make update-workspace * run make update-workspace * register investigation app * add investigation app to wireset * add investigations app provider to api initializer * fix imports * update feature toggle * fix cue definition and api initializer * clean up removing unecessary components * remove watcher feature toggle * add investigations backend behind feature toggle * revert change --------- Signed-off-by: Igor Suleymanov <igor.suleymanov@grafana.com> Co-authored-by: Igor Suleymanov <igor.suleymanov@grafana.com>
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
go 1.23.1
|
|
|
|
// The `skip:golangci-lint` comment tag is used to exclude the package from the `golangci-lint` GitHub Action.
|
|
// The module at the root of the repo (`.`) is excluded because ./pkg/... is included manually in the `golangci-lint` configuration.
|
|
|
|
use (
|
|
. // skip:golangci-lint
|
|
./apps/alerting/notifications
|
|
./apps/investigation
|
|
./apps/playlist
|
|
./kindsv2
|
|
./pkg/aggregator
|
|
./pkg/apimachinery
|
|
./pkg/apiserver
|
|
./pkg/build
|
|
./pkg/build/wire // skip:golangci-lint
|
|
./pkg/promlib
|
|
./pkg/semconv
|
|
./pkg/storage/unified/apistore
|
|
./pkg/storage/unified/resource
|
|
./pkg/util/xorm // skip:golangci-lint
|
|
)
|
|
|
|
// when we release xorm we would like to release it like github.com/grafana/grafana/pkg/util/xorm
|
|
// but we don't want to change all the imports. so we use replace to handle this situation
|
|
replace xorm.io/xorm => ./pkg/util/xorm
|
|
|
|
replace github.com/getkin/kin-openapi => github.com/getkin/kin-openapi v0.125.0
|
|
|
|
replace github.com/prometheus/alertmanager => github.com/grafana/prometheus-alertmanager v0.25.1-0.20240930132144-b5e64e81e8d3
|
|
|
|
replace github.com/crewjam/saml => github.com/grafana/saml v0.4.15-0.20240917091248-ae3bbdad8a56
|