-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathrelyance.yaml
More file actions
68 lines (58 loc) · 1.83 KB
/
relyance.yaml
File metadata and controls
68 lines (58 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Relyance Compliance Inspector Configuration
# TODO: Replace text in < > with actual information from your environment
# Product and Repository Metadata
# Purpose: Useful to slice/dice the Data Inventory and Data Map in Relyance
repository: grafana/loki
# Services and Code Relationship
# Purpose: Configuration used to visualize the code base and relationships between microservices and code.
# Note: Directory paths are relative to the repository's root directory.
# Note: Need a separate entry for each microservice. See example below.
services:
- service: compactor
source:
- pkg/compactor
- service: distributor
source:
- pkg/distributor
- service: indexgateway
source:
- pkg/indexgateway
- service: ingester
source:
- pkg/ingester
- service: querier
source:
- pkg/querier
- service: ruler
source:
- pkg/ruler
# Example: Services and Code Relationship
# Note: Do not use below. It is an example.
# Note: Directory paths are relative to the repository's root directory
#- service: paymentservice
# source:
# - src/payments
# - src/checkout_service
#- service: catalogservice
# source:
# - src/catalog
# Source Directories to Exclude
# Purpose: Configuration is used to exclude directories from analysis such as test directories etc.
# Note: Directory paths are relative to the repository's root directory
exclude:
- .cursor
- .devcontainer
- .github
- clients
- debug
- docs
- examples
- loki-build-image
- nix
- operator
- tools
# Excluding files and directories using patterns (enable lines as needed)
#exclude_patterns:
# - "**/*_mock.*" # example of excluding file with some pattern
# - "**/exclude_dir/**" # example of excluding a directory regardless where the directory is
# - src/excluded_file.go # example of excluding a specific file