From 219c156f6b75b9d62b04871084e3379f7d8534a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Pt=C3=A1=C4=8Dek?= Date: Wed, 26 Jul 2023 20:03:45 +0200 Subject: [PATCH] default yaml configuration change --- .../prometheus/android/exporter/compose/Configuration.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/src/main/java/com/birdthedeveloper/prometheus/android/exporter/compose/Configuration.kt b/client/app/src/main/java/com/birdthedeveloper/prometheus/android/exporter/compose/Configuration.kt index 75eea52..af287cb 100644 --- a/client/app/src/main/java/com/birdthedeveloper/prometheus/android/exporter/compose/Configuration.kt +++ b/client/app/src/main/java/com/birdthedeveloper/prometheus/android/exporter/compose/Configuration.kt @@ -34,7 +34,7 @@ data class PromConfigFile( pushproxFqdn = this.pushprox?.fqdn ?: "", remoteWriteEnabled = this.remote_write?.enabled ?: false, remoteWriteEndpoint = this.remote_write?.remote_write_endpoint ?: "", - prometheusServerEnabled = this.prometheus_server?.enabled ?: true, + prometheusServerEnabled = this.prometheus_server?.enabled ?: false, prometheusServerPort = (this.prometheus_server?.port ?: defaultPrometheusServerPort).toString(), remoteWriteMaxSamplesPerExport = (this.remote_write?.max_samples_per_export