Skip to content

Commit

Permalink
Merge #448
Browse files Browse the repository at this point in the history
448: Drop support for LiveView r=sevanspowell a=erikd

LiveView is no longer supported by the node itself.

Co-authored-by: Erik de Castro Lopo <erikd@mega-nerd.com>
  • Loading branch information
iohk-bors[bot] and erikd committed Nov 17, 2020
2 parents 2e56961 + 91d038b commit 8001d27
Showing 1 changed file with 4 additions and 33 deletions.
37 changes: 4 additions & 33 deletions cardano-lib/generic-log-config.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
{

# The node can run in either the SimpleView or LiveView. The SimpleView just
# uses standard output, optionally with log output. The LiveView is a text
# console with a live view of various node metrics.
ViewMode = "SimpleView";

# Enable or disable logging overall
TurnOnLogging = true;

Expand Down Expand Up @@ -176,35 +171,11 @@
# and override and not an extension so anything matched here will not
# go to the default backend, only to the explicitly listed backends.
mapBackends = {
"cardano.node.ChainDB.metrics" = [
"EKGViewBK"
{
kind = "UserDefinedBK";
name = "LiveViewBackend";
}
];
"cardano.node.metrics" = [
"EKGViewBK"
{
kind = "UserDefinedBK";
name = "LiveViewBackend";
}
];
"cardano.node-metrics" = [
"EKGViewBK"
{
kind = "UserDefinedBK";
name = "LiveViewBackend";
}
];
"cardano.node.ChainDB.metrics" = [];
"cardano.node.metrics" = [];
"cardano.node-metrics" = [];
"cardano.node.Forge.metrics" = [ "EKGViewBK" ];
"cardano.node.BlockFetchDecision.peers" = [
"EKGViewBK"
{
kind = "UserDefinedBK";
name = "LiveViewBackend";
}
];
"cardano.node.BlockFetchDecision.peers" = [];
};

# This section is more expressive still, and needs to be properly documented.
Expand Down

0 comments on commit 8001d27

Please sign in to comment.