c7c17679e9
There are a lot of latency metrics. This change splits up the existing
dashboard for latencies. For REST API latencies, it also allows to
select the REST API calls to look at. This change also adds latency
dashboards for the NoteDB and UI Actions.
Change-Id: Idb9631cc1bc838d06e626d58f163e71fb78b30c5
20 lines
316 B
Plaintext
20 lines
316 B
Plaintext
{
|
|
new(show=true,
|
|
format='short',
|
|
label='',
|
|
logBase=1,):: {
|
|
format: format,
|
|
label: label,
|
|
logBase: logBase,
|
|
},
|
|
latency: self.new(
|
|
label='Latency',
|
|
format='s',
|
|
logBase=10,
|
|
),
|
|
cache_misses: self.new(
|
|
label='Cache Misses',
|
|
format='percent',
|
|
),
|
|
}
|