summaryrefslogtreecommitdiff
path: root/profcollectd/libprofcollectd/config.rs
diff options
context:
space:
mode:
authorYi Kong <yikong@google.com>2021-03-04 14:47:48 +0800
committerYi Kong <yikong@google.com>2021-03-04 14:50:15 +0800
commit4e33c57d7714c496436510d473904e142c04585c (patch)
tree3a90d653b0596bf1d18687cb7740884ef4930865 /profcollectd/libprofcollectd/config.rs
parentd8fdc08b82e7a645c7cbc5b21df3a66dc4edb9ea (diff)
downloadextras-4e33c57d7714c496436510d473904e142c04585c.tar.gz
profcollect: Remove report at the old location
Test: presubmit Change-Id: I714203b8ff4007903b8817ad2fe0699913830733
Diffstat (limited to 'profcollectd/libprofcollectd/config.rs')
-rw-r--r--profcollectd/libprofcollectd/config.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/profcollectd/libprofcollectd/config.rs b/profcollectd/libprofcollectd/config.rs
index e9a1d288..e72fa47a 100644
--- a/profcollectd/libprofcollectd/config.rs
+++ b/profcollectd/libprofcollectd/config.rs
@@ -30,6 +30,8 @@ lazy_static! {
pub static ref TRACE_OUTPUT_DIR: &'static Path = Path::new("/data/misc/profcollectd/trace/");
pub static ref PROFILE_OUTPUT_DIR: &'static Path = Path::new("/data/misc/profcollectd/output/");
pub static ref REPORT_OUTPUT_DIR: &'static Path = Path::new("/data/misc/profcollectd/report/");
+ pub static ref OLD_REPORT_OUTPUT_FILE: &'static Path =
+ Path::new("/data/misc/profcollectd/report.zip");
pub static ref CONFIG_FILE: &'static Path =
Path::new("/data/misc/profcollectd/output/config.json");
}