Skip to content

Commit

Permalink
fix metrics name (#325)
Browse files Browse the repository at this point in the history
remove hostname from metrics name
  • Loading branch information
randytpierce authored Feb 12, 2024
2 parents c6310e5 + 8788365 commit 3a2bb3b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/vxingest/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,7 @@ def process_jobs(
)
f_handler = add_logfile(ql, logpath)

hostname = os.uname().nodename.split(".")[0]
metric_name = f"{name}_{hostname}"
metric_name = f"{name}"
logger.info(f"metric_name {metric_name}")

# create an output directory with the time this job was started.
Expand Down

0 comments on commit 3a2bb3b

Please sign in to comment.