Oscar Alfredo Leiva Salomón 8917de50c7 Merge branch 'feature-postgres_and_mail_related' of oscarleiva/energylink into development 6 роки тому
..
api 8917de50c7 Merge branch 'feature-postgres_and_mail_related' of oscarleiva/energylink into development 6 роки тому
bus 87760d4fde Codestyle: Fix govet issues (#17178) 6 роки тому
cmd 2acffbeb10 CLI: Fix installing plugins on windows (#19061) 6 роки тому
components e1b2d61ceb backend: null.Float NaN -> null for json marshal (#18284) 6 роки тому
events de0f04ec3c feat(signup): progress on new sign up and email verification flow, #2353 10 роки тому
extensions 1a4be4af8c Enterprise: add dependencies for upcoming features (#18793) 6 роки тому
infra 80592e3361 Metrics: Adds setting for turning off total stats metrics (#19142) 6 роки тому
login 7b7b95341e LDAP: Allow an user to be synchronised against LDAP (#18976) 6 роки тому
middleware 0cbbb43222 LDAP: Add API endpoint to debug user mapping from LDAP (#18833) 6 роки тому
models a41a7ea656 Backend: Remove redundant condition of `ROLE_VIEWER` (#19211) 6 роки тому
plugins f7c55d3968 Plugins: better warning when plugins fail to load (#18671) 6 роки тому
registry d0c00388e6 add functionality to override service in registry 7 роки тому
services 2f0e1e0470 archivo .ini con configuracion de postgres y smtp; correccion plantillas de correo 6 роки тому
setting 2f0e1e0470 archivo .ini con configuracion de postgres y smtp; correccion plantillas de correo 6 роки тому
tsdb 19f3ec4891 MySQL, Postgres, MSSQL: Only debug log when in development (#19239) 6 роки тому
util 35b74a99a8 Emails: resurrect template notification (#18686) 6 роки тому
ARCHITECTURE.md c9e566b156 Docs: Minor edits to the README and several md files (#19238) 6 роки тому
README.md 8f150c67aa Docs upgrading deps (#17657) 6 роки тому
STYLEGUIDE.md caa1314f44 Build: use golangci-lint as a make command (#17739) 6 роки тому

README.md

Grafana backend codebase

The code styleguide and brief description of the architecture

On going refactorings.

These issues are not something we want to address all at once but something we will improve over time. Since Grafana is released at a regular schedule the prefer approuch is to do this in batches. Not only is it easier to review, it also reduces the risk of conflicts when cherry-picking fixes from master to release branches. Changes that spawn multiple locations are therefore prefered in the end of the release cycle since we make fewer patch releases in the end of the cycle.

Global state

Global state makes testing and debugging software harder and its something we want to avoid when possible. Unfortunately, there is quite a lot of global state in Grafana. The way we want to migrate away from this is to use the inject package to wire up all dependencies either in pkg/cmd/grafana-server/main.go or self registering using registry.RegisterService ex https://github.com/grafana/grafana/blob/master/pkg/services/cleanup/cleanup.go#L25

Reduce the use of the init() function

Should only be used to register services/implementations.

Settings refactoring

The plan is to move all settings to from package level vars in settings package to the setting.Cfg struct. To access the settings services/components can inject this setting.Cfg struct.

Cfg struct Injection example

Reduce the use of Goconvey

We want to migrated away from using Goconvey and use stdlib testing as its the most common approuch in the GO community and we think it will make it easier for new contributors. Read more about how we want to write tests in the ARCHITECTURE.MD docs.

Sqlstore refactoring

The sqlstore handlers all use a global xorm engine variable. This should be refactored to use the Sqlstore instance.

Avoid global HTTP Handler functions

HTTP handlers should be refactored to so the handler methods are on the HttpServer instance or a more detailed handler struct. E.g (AuthHandler). This way they get access to HttpServer service dependencies (& Cfg object) and can avoid global state

Date comparison

Newly introduced date columns in the database should be stored as epochs if date comparison is required. This permits to have a unifed approach for comparing dates against all the supported databases instead of handling seperately each one of them. In addition to this, by comparing epochs error pruning transformations from/to other time zones are no more needed.

Dependency management

Documented in UPDRAGING_DEPENDENCIES.md.