mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-12-22 07:03:35 -06:00
no more log collection
This commit is contained in:
parent
28c4446a13
commit
06be5cde64
20
.github/workflows/build.yml
vendored
20
.github/workflows/build.yml
vendored
@ -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()
|
||||
|
14
.github/workflows/preview.yml
vendored
14
.github/workflows/preview.yml
vendored
@ -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.
|
||||
|
@ -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?
|
||||
}
|
||||
}
|
||||
|
@ -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?
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user