Hi, I am trying to get metaflow to register runs t...
# ask-metaflow
h
Hi, I am trying to get metaflow to register runs that happen with Argo Worflows but no luck so far. I have read about having this variable
METAFLOW_DEFAULT_METADATA="service"
however I still don't see the runs via metaflow's client api. Also I was wondering how to get the run_id of metaflow and not argo. When running on argo the current.run_id looks like it is a string (such as branchflow-r8qcn), but I need to have the metaflow equivalent which is an int. Currently on Metaflow 2.7.19. Any help appreciated!
1
s
@handsome-ocean-90256 the metaflow run ids and the argo run ids are the same (
argo-<argo-workflow-name>
).
if you don't see any runs using the metaflow client, can you make sure you are setting
namespace(None)
for your client
h
namespace(None) did the trick, I can see them now, thanks!
🙌 1