aboutsummaryrefslogtreecommitdiff
path: root/kamon-status/src/components/OverviewCard.vue
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2019-02-11 23:16:54 +0100
committerIvan Topolnjak <ivantopo@gmail.com>2019-02-12 02:49:23 +0100
commit7152517f2586a5b40726365a756087ddddc099ca (patch)
tree26b4d9a1768dd0460a4cedb9fc4fde27750936a4 /kamon-status/src/components/OverviewCard.vue
parent4ce838b1af6257625b27ea38d55947912cba00c9 (diff)
downloadKamon-7152517f2586a5b40726365a756087ddddc099ca.tar.gz
Kamon-7152517f2586a5b40726365a756087ddddc099ca.tar.bz2
Kamon-7152517f2586a5b40726365a756087ddddc099ca.zip
self-review changes and use a thread pool for the embedded status page
server
Diffstat (limited to 'kamon-status/src/components/OverviewCard.vue')
-rw-r--r--kamon-status/src/components/OverviewCard.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/kamon-status/src/components/OverviewCard.vue b/kamon-status/src/components/OverviewCard.vue
index 8939d93d..6746d761 100644
--- a/kamon-status/src/components/OverviewCard.vue
+++ b/kamon-status/src/components/OverviewCard.vue
@@ -53,7 +53,7 @@ export default class OverviewCard extends Vue {
}
get instrumentationStatusMessage(): string {
- return this.instrumentation.map(i => (i.isActive ? 'Active' : 'Disabled') as string).getOrElse('Unknown')
+ return this.instrumentation.map(i => (i.active ? 'Active' : 'Disabled') as string).getOrElse('Unknown')
}
get metricsStatusMessage(): string {