This is an automated email from the ASF dual-hosted git repository. asorokoumov pushed a commit to branch fix-csv-example in repository https://gitbox.apache.org/repos/asf/otava.git
commit ad5a8609098f4a6f7d625a6f220042e0bb4de722 Author: Alex Sorokoumov <[email protected]> AuthorDate: Mon Jul 28 16:07:56 2025 -0700 Fix data location in csv example --- examples/csv/docker-compose.yaml | 4 +--- examples/csv/otava.yaml | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/examples/csv/docker-compose.yaml b/examples/csv/docker-compose.yaml index 57944a8..a1e5f36 100644 --- a/examples/csv/docker-compose.yaml +++ b/examples/csv/docker-compose.yaml @@ -24,6 +24,4 @@ services: environment: OTAVA_CONFIG: examples/csv/otava.yaml volumes: - - ./tests:/tests - - + - ./data:/data diff --git a/examples/csv/otava.yaml b/examples/csv/otava.yaml index dd639d0..d91f4ea 100644 --- a/examples/csv/otava.yaml +++ b/examples/csv/otava.yaml @@ -18,10 +18,10 @@ tests: local.sample: type: csv - file: /tests/local_sample.csv + file: /data/local_sample.csv time_column: time attributes: [commit] metrics: [metric1, metric2] csv_options: - delimiter: ',' - quotechar: "'" \ No newline at end of file + delimiter: "," + quotechar: "'"
