Depends on D2415.
Details
- Reviewers
ardumont anlambert - Group Reviewers
Reviewers - Commits
- rDENV3007fb37f47d: docker/compose: configure the statsd endpoint for most of the containers
Diff Detail
- Repository
- rDENV Development environment
- Branch
- current
- Lint
Lint Skipped - Unit
Unit Tests Skipped - Build Status
Buildable 9625 Build 14171: arc lint + arc unit
Event Timeline
Great ! Could you also add that configuration to the swh-web service ? I am currently working on T2124 and I have added a couple of statsd metric to the webapp.
Sure. I'm also moving these env vars in a dedicated file instead of putting them directly in the docker-compose file.
Sure. I'm also moving these env vars in a dedicated file instead of putting them directly in the docker-compose file.
+1
move statsd emv var declarations in an env/statsd.env file and use it on swh-web
so anlambert is happy :-)
I would like this class to be more pythonic by working as a context manager. For me, the sqlite3 connection should probably happen in an __enter__() function, and closing it in an __exit__() function. I know you cannot use a with block in the Fuse operation class (a shame...), but at least it keeps the quirky aspect of this solely in the Fuse class.