no more log collection

This commit is contained in:
Mark Wolters 2023-10-05 15:51:57 -04:00 committed by Jonathan Shook
parent 28c4446a13
commit 06be5cde64
4 changed files with 20 additions and 17 deletions

View File

@ -53,17 +53,17 @@ jobs:
# name: codecov-report # name: codecov-report
# path: codecov-report.tgz # path: codecov-report.tgz
- name: Collecting logfiles # - name: Collecting logfiles
if: success() || failure() # if: success() || failure()
run: tar -zcvf logfiles.tgz [a-zA-Z]**/logs/* # run: tar -zcvf logfiles.tgz [a-zA-Z]**/logs/*
- name: Uploading log files # - name: Uploading log files
if: success() || failure() # if: success() || failure()
uses: actions/upload-artifact@v3 # uses: actions/upload-artifact@v3
with: # with:
node-version: '16' # node-version: '16'
name: nb-logs # name: nb-logs
path: logfiles.tgz # path: logfiles.tgz
- name: export docs - name: export docs
if: success() if: success()

View File

@ -191,13 +191,13 @@ jobs:
# asset_name: nb5 # asset_name: nb5
# asset_content_type: application/octet-stream # asset_content_type: application/octet-stream
- name: Archive Test Results # - name: Archive Test Results
if: always() # if: always()
uses: actions/upload-artifact@v3 # uses: actions/upload-artifact@v3
with: # with:
name: test-results # name: test-results
path: | # path: |
[a-zA-Z]**/logs/* # [a-zA-Z]**/logs/*
# This triggers a preview build by cascading the tag to the builddocs repo. # This triggers a preview build by cascading the tag to the builddocs repo.
# The builddocs repo then pushes to preview or release depending on the tag. # The builddocs repo then pushes to preview or release depending on the tag.

View File

@ -43,5 +43,7 @@ public class HdrHistoLog extends NBBaseComponent {
HistoIntervalLogger histoIntervalLogger = HistoIntervalLogger histoIntervalLogger =
new HistoIntervalLogger(this, session, logfile, compiledPattern, intervalMillis); new HistoIntervalLogger(this, session, logfile, compiledPattern, intervalMillis);
this.attachChild(histoIntervalLogger); this.attachChild(histoIntervalLogger);
//TODO: Use create().histogram() instead?
} }
} }

View File

@ -45,5 +45,6 @@ public class HistoStats extends NBBaseComponent {
HistoStatsLogger histoStatsLogger = HistoStatsLogger histoStatsLogger =
new HistoStatsLogger(this, sessionComment, logfile, compiledPattern, intervalMillis, TimeUnit.NANOSECONDS); new HistoStatsLogger(this, sessionComment, logfile, compiledPattern, intervalMillis, TimeUnit.NANOSECONDS);
this.attachChild(histoStatsLogger); this.attachChild(histoStatsLogger);
//TODO: Use create().histogram() instead?
} }
} }