risedev/task/
prometheus_service.rs1use std::env;
16use std::path::{Path, PathBuf};
17use std::process::Command;
18
19use anyhow::{Result, anyhow};
20
21use super::{ExecuteContext, Task};
22use crate::util::stylized_risedev_subcmd;
23use crate::{PrometheusConfig, PrometheusGen};
24
25pub struct PrometheusService {
26 config: PrometheusConfig,
27}
28
29impl PrometheusService {
30 pub fn new(config: PrometheusConfig) -> Result<Self> {
31 Ok(Self { config })
32 }
33
34 fn prometheus_path(&self) -> Result<PathBuf> {
35 let prefix_bin = env::var("PREFIX_BIN")?;
36 Ok(Path::new(&prefix_bin).join("prometheus").join("prometheus"))
37 }
38
39 fn prometheus(&self) -> Result<Command> {
40 Ok(Command::new(self.prometheus_path()?))
41 }
42
43 pub fn apply_command_args(cmd: &mut Command, config: &PrometheusConfig) -> Result<()> {
45 cmd.arg(format!(
46 "--web.listen-address={}:{}",
47 config.listen_address, config.port
48 ));
49 cmd.arg("--storage.tsdb.retention.time=30d");
50 Ok(())
51 }
52}
53
54impl Task for PrometheusService {
55 fn execute(&mut self, ctx: &mut ExecuteContext<impl std::io::Write>) -> anyhow::Result<()> {
56 ctx.service(self);
57 ctx.pb.set_message("starting...");
58
59 let path = self.prometheus_path()?;
60 if !path.exists() {
61 return Err(anyhow!(
62 "prometheus binary not found in {:?}\nDid you enable monitoring feature in `{}`?",
63 path,
64 stylized_risedev_subcmd("configure")
65 ));
66 }
67
68 let prefix_config = env::var("PREFIX_CONFIG")?;
69 let prefix_data = env::var("PREFIX_DATA")?;
70
71 fs_err::write(
72 Path::new(&prefix_config).join("prometheus.yml"),
73 PrometheusGen.gen_prometheus_yml(&self.config),
74 )?;
75
76 let mut cmd = self.prometheus()?;
77
78 Self::apply_command_args(&mut cmd, &self.config)?;
79
80 cmd.arg(format!(
81 "--config.file={}",
82 Path::new(&prefix_config)
83 .join("prometheus.yml")
84 .to_string_lossy()
85 ))
86 .arg(format!(
87 "--storage.tsdb.path={}",
88 Path::new(&prefix_data).join("prometheus").to_string_lossy()
89 ));
90
91 ctx.run_command(ctx.tmux_run(cmd)?)?;
92
93 ctx.pb.set_message("started");
94
95 Ok(())
96 }
97
98 fn id(&self) -> String {
99 self.config.id.clone()
100 }
101}