-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DM-45576: Start a nightly cronjob to post a brief summary #3
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ecf5172
Install lsst-efd-client in the job container
hsinfang 36c17c9
Reformat with black
hsinfang 47bf001
Use queryDimensionRecords instead of queryDatasets
hsinfang e51a434
Report based on Sasquatch and Loki
hsinfang 12bcbcd
Update for the rubin-env 9 stack images
hsinfang 55d71e4
Clarify pipeline output accounting and improve wording
hsinfang 5f41b38
Update survey name from AUXTEL_PHOTO_IMAGING to BLOCK-306
hsinfang 3104c02
Switch to the new Butler query system
hsinfang e6ed052
Constrain the survey in all queries
hsinfang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
ARG STACK_TAG="w_2024_30" | ||
ARG STACK_TAG="w_latest" | ||
FROM lsstsqre/centos:7-stack-lsst_distrib-${STACK_TAG} | ||
USER root | ||
RUN <<EOT | ||
set -ex | ||
curl -O -L https://github.com/grafana/loki/releases/download/v2.9.9/logcli-2.9.9.x86_64.rpm | ||
rpm -i logcli-2.9.9.x86_64.rpm | ||
rm logcli-2.9.9.x86_64.rpm | ||
EOT | ||
USER lsst | ||
WORKDIR / | ||
COPY scripts scripts/ | ||
RUN <<EOT | ||
set -ex | ||
source /opt/lsst/software/stack/loadLSST.bash | ||
pip install lsst-efd-client | ||
EOT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does
&mode=DEBUG
do?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In that Times Square notebook, written before we started making this reporting tool, I wanted a "report" mode versus a "debug" mode. The former is brief and meant for people who don't care about PP internals. The latter has a lot more details which the PP team can use to know what might have gone wrong. Now we have this reporting tool, I probably can go back and think again whether it makes sense.