Skip to content

Commit

Permalink
Raise Loki ingestion limit (#1595)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne authored Nov 2, 2023
1 parent 1916cd7 commit 42e5695
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ethd
Original file line number Diff line number Diff line change
Expand Up @@ -777,10 +777,9 @@ envmigrate() {
var=ENV_VERSION
__target_ver=$(sed -n -e "s/^${var}=\(.*\)/\1/p" "default.env" || true)
__source_ver=$(sed -n -e "s/^${var}=\(.*\)/\1/p" "${ENV_FILE}" || true)
# Not yet - I want invis to find that bug. After that, enable this
# if [[ "${__keep_targets}" -eq 1 && "${__target_ver}" = "${__source_ver}" ]]; then # No changes in template, do nothing
# return 0
# fi
if [[ "${__keep_targets}" -eq 1 && "${__target_ver}" = "${__source_ver}" ]]; then # No changes in template, do nothing
return 0
fi

if [ "${__keep_targets}" -eq 0 ]; then
echo "Refreshing build targets in ${ENV_FILE}"
Expand Down
2 changes: 2 additions & 0 deletions loki/loki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ schema_config:

limits_config:
retention_period: 30d
ingestion_rate_mb: 128
ingestion_burst_size_mb: 512

0 comments on commit 42e5695

Please sign in to comment.