This repository was archived by the owner on Mar 27, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +84
-83
lines changed
exercises/exercise_000_sudoku_solver_initial_state
infrastructure/grafana/etc Expand file tree Collapse file tree 3 files changed +84
-83
lines changed Original file line number Diff line number Diff line change @@ -565,13 +565,13 @@ oauth_allow_insecure_email_lookup = false
565
565
# ################################### Anonymous Auth ######################
566
566
[auth.anonymous]
567
567
# enable anonymous access
568
- enabled = false
568
+ enabled = true
569
569
570
570
# specify organization name that should be used for unauthenticated users
571
571
org_name = Main Org.
572
572
573
573
# specify role for unauthenticated users
574
- org_role = Viewer
574
+ org_role = Admin
575
575
576
576
# mask the Grafana version number for unauthenticated users
577
577
hide_version = false
Original file line number Diff line number Diff line change
1
+ include "kamon"
2
+
1
3
akka {
2
4
loggers = ["akka.event.slf4j.Slf4jLogger"]
3
5
loglevel = "INFO"
@@ -24,87 +26,6 @@ akka {
24
26
}
25
27
}
26
28
27
- kamon {
28
- environment {
29
- service = "scala2-to-scala3-course-service"
30
- }
31
-
32
- trace {
33
- tick-interval = 5 seconds
34
- sampler = always
35
- }
36
-
37
- instrumentation.akka.filters {
38
- actors.track {
39
- includes = [ "sudoku-solver-system/user/**" ]
40
- }
41
-
42
- actors.trace {
43
- includes = [ "sudoku-solver-system/user/**" ]
44
- }
45
-
46
- actors.start-trace {
47
- includes = [ "sudoku-solver-system/user/**" ]
48
- }
49
-
50
- dispatchers {
51
- excludes = [ "sudoku-solver-system/akka.actor.default-dispatcher" ]
52
- }
53
- }
54
-
55
- # Source: https://kamon.io/docs/latest/reporters/prometheus/
56
- prometheus {
57
- include-environment-tags = true
58
- embedded-server {
59
- hostname = 0.0.0.0
60
- port = 9095
61
- }
62
-
63
- # Source: https://kamon.io/docs/latest/reporters/prometheus/
64
- buckets {
65
- default-buckets = [
66
- 10,
67
- 30,
68
- 100,
69
- 300,
70
- 1000,
71
- 3000,
72
- 10000,
73
- 30000,
74
- 100000
75
- ]
76
-
77
- time-buckets = [
78
- 0.005,
79
- 0.01,
80
- 0.025,
81
- 0.05,
82
- 0.075,
83
- 0.1,
84
- 0.25,
85
- 0.5,
86
- 0.75,
87
- 1,
88
- 2.5,
89
- 5,
90
- 7.5,
91
- 10
92
- ]
93
-
94
- information-buckets = [
95
- 512,
96
- 1024,
97
- 2048,
98
- 4096,
99
- 16384,
100
- 65536,
101
- 524288,
102
- 1048576
103
- ]
104
- }
105
- }
106
- }
107
-
108
29
kanela {
109
30
log-level = "DEBUG"
110
31
}
Original file line number Diff line number Diff line change
1
+ kamon {
2
+ environment {
3
+ service = "scala2-to-scala3-course-service"
4
+ }
5
+
6
+ trace {
7
+ tick-interval = 5 seconds
8
+ sampler = always
9
+ }
10
+
11
+ instrumentation.akka.filters {
12
+ actors.track {
13
+ includes = [ "sudoku-solver-system/user/**" ]
14
+ }
15
+
16
+ actors.trace {
17
+ includes = [ "sudoku-solver-system/user/**" ]
18
+ }
19
+
20
+ actors.start-trace {
21
+ includes = [ "sudoku-solver-system/user/**" ]
22
+ }
23
+
24
+ dispatchers {
25
+ excludes = [ "sudoku-solver-system/akka.actor.default-dispatcher" ]
26
+ }
27
+ }
28
+
29
+ # Source: https://kamon.io/docs/latest/reporters/prometheus/
30
+ prometheus {
31
+ include-environment-tags = true
32
+ embedded-server {
33
+ hostname = 0.0.0.0
34
+ port = 9095
35
+ }
36
+
37
+ # Source: https://kamon.io/docs/latest/reporters/prometheus/
38
+ buckets {
39
+ default-buckets = [
40
+ 10,
41
+ 30,
42
+ 100,
43
+ 300,
44
+ 1000,
45
+ 3000,
46
+ 10000,
47
+ 30000,
48
+ 100000
49
+ ]
50
+
51
+ time-buckets = [
52
+ 0.005,
53
+ 0.01,
54
+ 0.025,
55
+ 0.05,
56
+ 0.075,
57
+ 0.1,
58
+ 0.25,
59
+ 0.5,
60
+ 0.75,
61
+ 1,
62
+ 2.5,
63
+ 5,
64
+ 7.5,
65
+ 10
66
+ ]
67
+
68
+ information-buckets = [
69
+ 512,
70
+ 1024,
71
+ 2048,
72
+ 4096,
73
+ 16384,
74
+ 65536,
75
+ 524288,
76
+ 1048576
77
+ ]
78
+ }
79
+ }
80
+ }
You can’t perform that action at this time.
0 commit comments