Skip to content

Commit

Permalink
fix metric name
Browse files Browse the repository at this point in the history
  • Loading branch information
masci committed Jun 21, 2024
1 parent 0cb0078 commit 2b3d09a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collector/src/collector/cli/docker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def pulls(ctx):

if not ctx.obj.get("DRY_RUN"):
dd.Metric.send(
metric="haystack.github.stars", points=[(time.time(), int(pulls))], tags=ctx.obj.get("DEFAULT_TAGS")
metric="haystack.docker.pulls", points=[(time.time(), int(pulls))], tags=ctx.obj.get("DEFAULT_TAGS")
)

click.echo(pulls)

0 comments on commit 2b3d09a

Please sign in to comment.