grafana/pkg
Ryan McKinley f7c55d3968 Plugins: better warning when plugins fail to load (#18671)
* better pluin feedback

* add server side check for module.js
2019-08-22 07:04:02 +02:00
..
api Backend: Adds support for HTTP/2 (#18358) 2019-08-16 16:06:54 +01:00
bus Codestyle: Fix govet issues (#17178) 2019-06-04 22:00:05 +02:00
cmd cli: fix for recognizing when in dev mode. (#18334) 2019-08-02 09:38:41 +02:00
components backend: null.Float NaN -> null for json marshal (#18284) 2019-08-06 12:28:48 -04:00
events feat(signup): progress on new sign up and email verification flow, #2353 2015-08-28 15:14:24 +02:00
extensions SAML: Configuration defaults, examples and dependencies (#17954) 2019-07-05 11:27:14 +01:00
infra remotecache: support SSL with redis (#18511) 2019-08-13 06:51:13 -04:00
login OAuth: return GitLab groups as a part of user info (enable team sync) (#18388) 2019-08-07 17:05:35 +03:00
middleware Auth: change the error HTTP status codes (#18584) 2019-08-20 20:13:27 +03:00
models API: Restrict anonymous user information access (#18422) 2019-08-12 20:03:48 +02:00
plugins Plugins: better warning when plugins fail to load (#18671) 2019-08-22 07:04:02 +02:00
registry add functionality to override service in registry 2018-10-30 13:37:30 +01:00
services LDAP: multildap + ldap integration (#18588) 2019-08-19 00:52:32 +03:00
setting Backend: Adds support for HTTP/2 (#18358) 2019-08-16 16:06:54 +01:00
tsdb TestData: attach labels to series results (#18653) 2019-08-21 07:50:13 -07:00
util CLI: Add command to migrate all datasources to use encrypted password fields (#17118) 2019-05-27 10:47:21 +02:00
ARCHITECTURE.md Codestyle: add guidelines for removing the m alias for models (#17890) 2019-07-03 11:36:01 +03:00
README.md Docs upgrading deps (#17657) 2019-07-02 09:43:25 +02:00
STYLEGUIDE.md Build: use golangci-lint as a make command (#17739) 2019-07-02 16:06:59 +03:00

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.