Skip to content

Commit

Permalink
V2024.5
Browse files Browse the repository at this point in the history
* Updated Grafana, Loki and Promtail components to use latest versions
* Fixed column width issues in Flow Executions dashboard
  • Loading branch information
Cortex-DMS authored Jun 4, 2024
1 parent 1b8cd95 commit 3d31cac
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 23 deletions.
16 changes: 8 additions & 8 deletions Grafana/Grafana/Dashboards/Flow Execution Requests.json
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@
"properties": [
{
"id": "custom.width",
"value": 135
"value": 140
}
]
},
Expand All @@ -871,7 +871,7 @@
"properties": [
{
"id": "custom.width",
"value": 125
"value": 130
}
]
}
Expand Down Expand Up @@ -1153,7 +1153,7 @@
"properties": [
{
"id": "custom.width",
"value": 134
"value": 140
}
]
},
Expand All @@ -1177,7 +1177,7 @@
"properties": [
{
"id": "custom.width",
"value": 125
"value": 130
}
]
}
Expand Down Expand Up @@ -1999,7 +1999,7 @@
"properties": [
{
"id": "custom.width",
"value": 135
"value": 140
}
]
},
Expand All @@ -2023,7 +2023,7 @@
"properties": [
{
"id": "custom.width",
"value": 125
"value": 130
}
]
},
Expand Down Expand Up @@ -2224,7 +2224,7 @@
"properties": [
{
"id": "custom.width",
"value": 135
"value": 140
}
]
},
Expand All @@ -2248,7 +2248,7 @@
"properties": [
{
"id": "custom.width",
"value": 125
"value": 130
}
]
},
Expand Down
44 changes: 29 additions & 15 deletions Grafana/Loki/Config/loki-local-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,46 +6,60 @@ server:
http_server_write_timeout: 10m # To avoid Grafana timeouts when frontend parallelism is lowered.
grpc_server_max_recv_msg_size: 16777216 # To avoid grpc ResourceExhausted error
grpc_server_max_send_msg_size: 16777216 # To avoid grpc ResourceExhausted error

common:
instance_addr: 127.0.0.1
path_prefix: /tmp/loki
storage:
filesystem:
chunks_directory: /tmp/loki/chunks
rules_directory: /tmp/loki/rules
replication_factor: 1
ring:
instance_addr: 127.0.0.1
kvstore:
store: inmemory

query_range:
results_cache:
cache:
embedded_cache:
enabled: true
max_size_mb: 100
parallelise_shardable_queries: false

schema_config:
configs:
- from: 2020-10-24
store: boltdb-shipper
store: tsdb
object_store: filesystem
schema: v11
schema: v13
index:
prefix: index_
period: 24h

ruler:
alertmanager_url: http://localhost:9093

frontend_worker:
parallelism: 4 # Can be lowered to limit memory usage.


query_scheduler:
max_outstanding_requests_per_tenant: 2048

query_range:
parallelise_shardable_queries: false


limits_config:
max_query_length: 0h # Controls max time range for queries. Default is 721h.
split_queries_by_interval: 24h
query_timeout: 10m # To avoid Grafana timeouts when frontend parallelism is lowered.

querier:
query_timeout: 10m # To avoid Grafana timeouts when frontend parallelism is lowered.
engine:
timeout: 10m # To avoid Grafana timeouts when frontend parallelism is lowered.
max_concurrent: 4

# By default, Loki will send anonymous, but uniquely-identifiable usage and configuration
# analytics to Grafana Labs. These statistics are sent to https://stats.grafana.org/
#
# Statistics help us better understand how Loki is used, and they show us performance
# levels for most users. This helps us prioritize features and documentation.
# For more information on what's sent, look at
# https://github.com/grafana/loki/blob/main/pkg/analytics/stats.go
# Refer to the buildReport method to see what goes into a report.
#
# If you would like to disable reporting, uncomment the following lines:
analytics:
reporting_enabled: false

0 comments on commit 3d31cac

Please sign in to comment.