-
Notifications
You must be signed in to change notification settings - Fork 722
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6041 from IntersectMBO/bench-master
bench: improve genesis cache retrieval; maintenance for `locli` and others
- Loading branch information
Showing
19 changed files
with
220 additions
and
182 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Revision history for locli | ||
|
||
## 1.36 -- Nov 2024 | ||
|
||
* Add `CHANGELOG.md` for `locli` | ||
* Discern Plutus RIPEMD-160 workload in reports | ||
* Remove unused build-depends | ||
* Remove redundant fields from summary report: Perf analysis start/stop spread, Log text lines per host (NB. incompatible for comparison with `summary.org` files created with prior versions) | ||
* Remove unused CLI commands `list-logobject-keys-legacy` and `list-logobject-keys` | ||
* Remove unused `HostLogs` SHA256 checksums | ||
* Disable missing trace detection (temporarily), as raw data isn't properly evaluated to that end at the moment |
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,7 +1,7 @@ | ||
cabal-version: 3.0 | ||
|
||
name: locli | ||
version: 1.35 | ||
version: 1.36 | ||
synopsis: Cardano log analysis CLI | ||
description: Cardano log analysis CLI. | ||
category: Cardano, | ||
|
@@ -12,6 +12,7 @@ maintainer: [email protected] | |
license: Apache-2.0 | ||
license-files: LICENSE | ||
NOTICE | ||
extra-doc-files: CHANGELOG.md | ||
build-type: Simple | ||
|
||
common project-config | ||
|
@@ -95,11 +96,8 @@ library | |
autogen-modules: Paths_locli | ||
|
||
build-depends: aeson | ||
, Histogram | ||
, aeson-pretty | ||
, async | ||
, attoparsec | ||
, attoparsec-iso8601 | ||
, bytestring | ||
, cardano-git-rev ^>= 0.2.2 | ||
, cardano-ledger-core | ||
|
@@ -110,27 +108,16 @@ library | |
, directory | ||
, ede | ||
, extra | ||
, file-embed | ||
, filepath | ||
, fingertree | ||
, hashable | ||
, gnuplot | ||
, iohk-monitoring | ||
, optparse-applicative-fork | ||
, optparse-generic | ||
, optparse-applicative-fork >= 0.18.1 | ||
, ouroboros-consensus | ||
-- for Data.SOP.Strict: | ||
, ouroboros-network ^>= 0.17 | ||
, ouroboros-network-api | ||
, process | ||
, quiet | ||
, scientific | ||
, ouroboros-network-api ^>= 0.10 | ||
, sop-core | ||
, split | ||
, statistics | ||
, strict-sop-core | ||
, system-filepath | ||
, template-haskell | ||
, text | ||
, text-short | ||
, time | ||
|
@@ -139,18 +126,15 @@ library | |
, transformers-except | ||
, unix | ||
, unordered-containers | ||
, utf8-string | ||
, vector | ||
, witherable | ||
, cardano-strict-containers ^>= 0.1 | ||
|
||
executable locli | ||
import: project-config | ||
|
||
hs-source-dirs: app | ||
main-is: locli.hs | ||
ghc-options: -threaded | ||
-Wall | ||
-rtsopts | ||
"-with-rtsopts=-T -N7 -A2m -qb -H64m" | ||
|
||
|
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
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
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
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.