Skip to content

Commit

Permalink
Deploy to GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ci committed Nov 9, 2024
1 parent 1dc251b commit 333078f
Show file tree
Hide file tree
Showing 107 changed files with 9,578 additions and 11,932 deletions.
2 changes: 1 addition & 1 deletion 404.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/api/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/architecture/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/blocks-storage/binary-index-header/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/blocks-storage/bucket-index/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/blocks-storage/compactor/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/blocks-storage/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/blocks-storage/learn-more/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/blocks-storage/production-tips/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/blocks-storage/querier/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/blocks-storage/store-gateway/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/case-studies/buoyant-cloud/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/case-studies/gojek/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/case-studies/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/case-studies/rewe-digital/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/changelog/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/code-of-conduct/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/configuration/arguments/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/configuration/configuration-file/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/configuration/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/configuration/prometheus-frontend/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/configuration/v1guarantees/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/contributing/governance/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/contributing/how-integration-tests-work/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/contributing/how-to-add-a-maintainer/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/contributing/how-to-update-the-build-image/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/contributing/how-to-upgrade-golang-version/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/contributing/index.html

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions docs/getting-started/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# Description: This Makefile is used to generate the dashboards, alerts, and rules files from the cortex-jsonnet repo.
# It uses a customized mixin.libsonnet file to generate the files.

all:
# Clone the cortex-jsonnet repository
git clone https://github.com/cortexproject/cortex-jsonnet --depth 1
all: cortex-jsonnet
# Show the diff between the mixin.libsonnet file and the cortex-jsonnet/cortex-mixin/mixin.libsonnet file
git --no-pager diff --no-index cortex-jsonnet/cortex-mixin/mixin.libsonnet mixin.libsonnet || true
# Copy the mixin.libsonnet file to the cortex-jsonnet directory
Expand All @@ -15,6 +13,10 @@ all:
# Copy the files from the cortex-jsonnet/cortex-mixin/out directory to the current directory
mv cortex-jsonnet/cortex-mixin/out/* .

cortex-jsonnet:
# Clone the cortex-jsonnet repository
git clone https://github.com/cortexproject/cortex-jsonnet --depth 1

clean:
# Remove the cortex-jsonnet directory
rm -rf cortex-jsonnet
rm -rf cortex-jsonnet
4 changes: 2 additions & 2 deletions docs/getting-started/alerts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ groups:
message: |
The number of in-memory series per ingester in {{ $labels.cluster }}/{{ $labels.namespace }} is too high.
expr: |
avg by (cluster, namespace) (cortex_ingester_memory_series) > 1.6e6
avg by (cluster, namespace) (cortex_ingester_memory_series) > 3.2e6
for: 2h
labels:
severity: warning
Expand All @@ -254,7 +254,7 @@ groups:
message: |
Ingesters in {{ $labels.cluster }}/{{ $labels.namespace }} ingest too many samples per second.
expr: |
avg by (cluster, namespace) (rate(cortex_ingester_ingested_samples_total[1m])) > 80e3
avg by (cluster, namespace) (rate(cortex_ingester_ingested_samples_total[1m])) > 160e3
for: 15m
labels:
severity: warning
Expand Down
Loading

0 comments on commit 333078f

Please sign in to comment.