update config and integrate rest

This commit is contained in:
FrancescoMolinaro
2023-12-28 17:06:27 +01:00
parent 5d8ba54676
commit e39e034329
8 changed files with 161 additions and 91 deletions

View File

@@ -317,5 +317,70 @@ export const environment: BuildConfig = {
vocabulary: 'srsc',
enabled: true
}
],
notifyMetrics: [
{
title: 'Number of received LDN',
boxes: [
{
color: '#B8DAFF',
title: 'Accepted',
config: 'NOTIFY.incoming.accepted'
},
{
color: '#D4EDDA',
title: 'Processed LDN',
config: 'NOTIFY.incoming.processed'
},
{
color: '#FDBBC7',
title: 'Failure',
config: 'NOTIFY.incoming.failure'
},
{
color: '#FDBBC7',
title: 'Untrusted',
config: 'NOTIFY.incoming.untrusted'
},
{
color: '#43515F',
title: 'Incoming LDM messages',
textColor: '#fff',
config: ''
},
]
},
{
title: 'Number of generated LDN',
boxes: [
{
color: '#D4EDDA',
title: 'Delivered',
config: 'NOTIFY.outgoing.delivered'
},
{
color: '#B8DAFF',
title: 'Queued',
config: 'NOTIFY.outgoing.queued'
},
{
color: '#FDEEBB',
title: 'Queued for retry',
config: 'NOTIFY.outgoing.queued_for_retry'
},
{
color: '#FDBBC7',
title: 'Failure',
config: 'NOTIFY.outgoing.failure'
},
{
color: '#43515F',
title: 'Outgoing LDM messages',
textColor: '#fff',
config: ''
},
]
}
]
};