Docs: Update references in contribute/ dir (#69564)

Docs: Update references in `contribute` dir
This commit is contained in:
Niki 2023-06-06 15:56:39 +02:00 committed by GitHub
parent 34ba2ddd84
commit b58db18c01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions

View File

@ -2,11 +2,7 @@
Are you looking to take on contributions with bigger impact? These guides help you get a better understanding of the structure and design of the Grafana codebase. Are you looking to take on contributions with bigger impact? These guides help you get a better understanding of the structure and design of the Grafana codebase.
Learn more about the backend architecture: Learn more about the backend architecture in [contribute/backend](/contribute/backend/README.md).
- Part 1: [Services](../backend/services.md)
- Part 2: [Communication](../backend/communication.md)
- Part 3: [Database](../backend/database.md)
Learn more about the frontend architecture: Learn more about the frontend architecture:

View File

@ -21,4 +21,7 @@ of familiarizing themselves with the content of
## Dependency management ## Dependency management
Refer to [UPGRADING_DEPENDENCIES.md](https://github.com/grafana/grafana/blob/main/UPGRADING_DEPENDENCIES.md). Refer to:
- [UPGRADING_DEPENDENCIES.md](https://github.com/grafana/grafana/blob/main/UPGRADING_DEPENDENCIES.md)
- [Upgrading dependencies](/contribute/backend/upgrading-dependencies.md)

View File

@ -1,6 +1,6 @@
# Errors # Errors
Grafana introduced its own error type `github.com/grafana/grafana/pkg/util/errutil.Error` Grafana introduced its own error type [github.com/grafana/grafana/pkg/util/errutil.Error](../../pkg/util/errutil/errors.go)
in June 2022. It's built on top of the Go `error` interface extended to in June 2022. It's built on top of the Go `error` interface extended to
contain all the information necessary by Grafana to handle errors in an contain all the information necessary by Grafana to handle errors in an
informative and safe way. informative and safe way.

View File

@ -8,7 +8,7 @@ Logs are files that record events, warnings and errors as they occur within a so
### Usage ### Usage
Use the _pkg/infra/log_ package to create a named structured logger. Example: Use the [pkg/infra/log](/pkg/infra/log/) package to create a named structured logger. Example:
```go ```go
import ( import (

View File

@ -290,3 +290,4 @@ If that happens to you, chances are you've already set a lower limit and your sh
- Read our [style guides](/contribute/style-guides). - Read our [style guides](/contribute/style-guides).
- Learn how to [Create a pull request](/contribute/create-pull-request.md). - Learn how to [Create a pull request](/contribute/create-pull-request.md).
- Read about the [architecture](architecture). - Read about the [architecture](architecture).
- Read through the [backend documentation](/contribute/backend/README.md).