Skip to content

Commit 3d31cac

Browse files
authored
V2024.5
* Updated Grafana, Loki and Promtail components to use latest versions * Fixed column width issues in Flow Executions dashboard
1 parent 1b8cd95 commit 3d31cac

File tree

2 files changed

+37
-23
lines changed

2 files changed

+37
-23
lines changed

Grafana/Grafana/Dashboards/Flow Execution Requests.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@
847847
"properties": [
848848
{
849849
"id": "custom.width",
850-
"value": 135
850+
"value": 140
851851
}
852852
]
853853
},
@@ -871,7 +871,7 @@
871871
"properties": [
872872
{
873873
"id": "custom.width",
874-
"value": 125
874+
"value": 130
875875
}
876876
]
877877
}
@@ -1153,7 +1153,7 @@
11531153
"properties": [
11541154
{
11551155
"id": "custom.width",
1156-
"value": 134
1156+
"value": 140
11571157
}
11581158
]
11591159
},
@@ -1177,7 +1177,7 @@
11771177
"properties": [
11781178
{
11791179
"id": "custom.width",
1180-
"value": 125
1180+
"value": 130
11811181
}
11821182
]
11831183
}
@@ -1999,7 +1999,7 @@
19991999
"properties": [
20002000
{
20012001
"id": "custom.width",
2002-
"value": 135
2002+
"value": 140
20032003
}
20042004
]
20052005
},
@@ -2023,7 +2023,7 @@
20232023
"properties": [
20242024
{
20252025
"id": "custom.width",
2026-
"value": 125
2026+
"value": 130
20272027
}
20282028
]
20292029
},
@@ -2224,7 +2224,7 @@
22242224
"properties": [
22252225
{
22262226
"id": "custom.width",
2227-
"value": 135
2227+
"value": 140
22282228
}
22292229
]
22302230
},
@@ -2248,7 +2248,7 @@
22482248
"properties": [
22492249
{
22502250
"id": "custom.width",
2251-
"value": 125
2251+
"value": 130
22522252
}
22532253
]
22542254
},

Grafana/Loki/Config/loki-local-config.yaml

Lines changed: 29 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,46 +6,60 @@ server:
66
http_server_write_timeout: 10m # To avoid Grafana timeouts when frontend parallelism is lowered.
77
grpc_server_max_recv_msg_size: 16777216 # To avoid grpc ResourceExhausted error
88
grpc_server_max_send_msg_size: 16777216 # To avoid grpc ResourceExhausted error
9-
9+
1010
common:
11+
instance_addr: 127.0.0.1
1112
path_prefix: /tmp/loki
1213
storage:
1314
filesystem:
1415
chunks_directory: /tmp/loki/chunks
1516
rules_directory: /tmp/loki/rules
1617
replication_factor: 1
1718
ring:
18-
instance_addr: 127.0.0.1
1919
kvstore:
2020
store: inmemory
2121

22+
query_range:
23+
results_cache:
24+
cache:
25+
embedded_cache:
26+
enabled: true
27+
max_size_mb: 100
28+
parallelise_shardable_queries: false
29+
2230
schema_config:
2331
configs:
2432
- from: 2020-10-24
25-
store: boltdb-shipper
33+
store: tsdb
2634
object_store: filesystem
27-
schema: v11
35+
schema: v13
2836
index:
2937
prefix: index_
3038
period: 24h
3139

3240
ruler:
3341
alertmanager_url: http://localhost:9093
34-
35-
frontend_worker:
36-
parallelism: 4 # Can be lowered to limit memory usage.
37-
42+
3843
query_scheduler:
3944
max_outstanding_requests_per_tenant: 2048
40-
41-
query_range:
42-
parallelise_shardable_queries: false
43-
45+
4446
limits_config:
4547
max_query_length: 0h # Controls max time range for queries. Default is 721h.
4648
split_queries_by_interval: 24h
49+
query_timeout: 10m # To avoid Grafana timeouts when frontend parallelism is lowered.
4750

4851
querier:
49-
query_timeout: 10m # To avoid Grafana timeouts when frontend parallelism is lowered.
50-
engine:
51-
timeout: 10m # To avoid Grafana timeouts when frontend parallelism is lowered.
52+
max_concurrent: 4
53+
54+
# By default, Loki will send anonymous, but uniquely-identifiable usage and configuration
55+
# analytics to Grafana Labs. These statistics are sent to https://stats.grafana.org/
56+
#
57+
# Statistics help us better understand how Loki is used, and they show us performance
58+
# levels for most users. This helps us prioritize features and documentation.
59+
# For more information on what's sent, look at
60+
# https://github.com/grafana/loki/blob/main/pkg/analytics/stats.go
61+
# Refer to the buildReport method to see what goes into a report.
62+
#
63+
# If you would like to disable reporting, uncomment the following lines:
64+
analytics:
65+
reporting_enabled: false

0 commit comments

Comments
 (0)