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

View File

@ -191,13 +191,13 @@ jobs:
# asset_name: nb5
# asset_content_type: application/octet-stream
- name: Archive Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: test-results
path: |
[a-zA-Z]**/logs/*
# - name: Archive Test Results
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: test-results
# path: |
# [a-zA-Z]**/logs/*
# 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.

View File

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

View File

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