This is an automated email from the ASF dual-hosted git repository. asorokoumov pushed a commit to branch website-poc-from-asf-template in repository https://gitbox.apache.org/repos/asf/otava-website.git
commit 4d115400c33ad0b4c1a9607902c395fca3ab91d7 Author: Alex Sorokoumov <[email protected]> AuthorDate: Sat Mar 22 16:01:17 2025 -0700 Finish hunter->otava rename --- docs/big-query.md | 8 ++++---- docs/contributing.md | 4 ++-- docs/csv.md | 4 ++-- docs/postgresql.md | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/big-query.md b/docs/big-query.md index 9dd8ecd..29c6994 100644 --- a/docs/big-query.md +++ b/docs/big-query.md @@ -2,7 +2,7 @@ ## Schema -See [schema.sql](https://github.com/apache/hunter/tree/master/examples/bigquery/schema.sql) for the example schema. +See [schema.sql](https://github.com/apache/otava/tree/master/examples/bigquery/schema.sql) for the example schema. ## Usage @@ -13,12 +13,12 @@ export BIGQUERY_PROJECT_ID=... export BIGQUERY_DATASET=... export BIGQUERY_VAULT_SECRET=... ``` -or in `hunter.yaml`. +or in `otava.yaml`. -Also configure the credentials. See [config_credentials.sh](https://github.com/apache/hunter/tree/master/examples/bigquery/config_credentials.sh) for an example. +Also configure the credentials. See [config_credentials.sh](https://github.com/apache/otava/tree/master/examples/bigquery/config_credentials.sh) for an example. The following command shows results for a single test `aggregate_mem` and updates the database with newly found change points: ```bash -$ BRANCH=trunk HUNTER_CONFIG=hunter.yaml hunter analyze aggregate_mem --update-bigquery +$ BRANCH=trunk OTAVA_CONFIG=otava.yaml otava analyze aggregate_mem --update-bigquery ``` diff --git a/docs/contributing.md b/docs/contributing.md index f195ef6..efca7d2 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -10,10 +10,10 @@ ./poetryw install ``` -* Run the development version of hunter using poetry: +* Run the development version of otava using poetry: ``` -./poetryw run hunter ... +./poetryw run otava ... ``` See the [poetry docs](https://python-poetry.org/docs) for more. diff --git a/docs/csv.md b/docs/csv.md index c813ba4..2e649dd 100644 --- a/docs/csv.md +++ b/docs/csv.md @@ -1,7 +1,7 @@ # Importing results from CSV :::tip -See [hunter.yaml](https://github.com/apache/hunter/tree/master/examples/csv/hunter.yaml) for the full example configuration. +See [otava.yaml](https://github.com/apache/otava/tree/master/examples/csv/otava.yaml) for the full example configuration. ::: ## Tests @@ -22,7 +22,7 @@ tests: ## Example ```bash -docker-compose -f examples/csv/docker-compose.yaml run --build hunter bin/hunter analyze local.sample +docker-compose -f examples/csv/docker-compose.yaml run --build otava bin/otava analyze local.sample ``` Expected output: diff --git a/docs/postgresql.md b/docs/postgresql.md index 63ede39..2db1a9b 100644 --- a/docs/postgresql.md +++ b/docs/postgresql.md @@ -111,8 +111,8 @@ See [otava.yaml](../examples/postgresql/otava.yaml) for the example configuratio [docker-compose.yaml](../examples/postgresql/docker-compose.yaml) contains example config required to connect to PosgreSQL: 1. `POSTGRES_*` environment variables are used to pass connection details to the container. -2. `HUNTER_CONFIG` is the path to the configuration file described above. -3. `BRANCH` variable is used within `HUNTER_CONFIG` to analyze experiment results only for a specific branch. +2. `OTAVA_CONFIG` is the path to the configuration file described above. +3. `BRANCH` variable is used within `OTAVA_CONFIG` to analyze experiment results only for a specific branch. ### CLI arguments
