mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -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
|
# 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()
|
||||||
|
14
.github/workflows/preview.yml
vendored
14
.github/workflows/preview.yml
vendored
@ -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.
|
||||||
|
@ -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?
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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?
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user