This is an automated email from the ASF dual-hosted git repository.

asorokoumov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/otava.git


The following commit(s) were added to refs/heads/master by this push:
     new 651c5d9  Fix data location in csv example (#81)
651c5d9 is described below

commit 651c5d9cb424fe112cc5995918f9c0333347d133
Author: Alex Sorokoumov <[email protected]>
AuthorDate: Mon Aug 4 16:27:12 2025 -0700

    Fix data location in csv example (#81)
---
 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: "'"

Reply via email to