aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Telemetry
diff options
context:
space:
mode:
authorRoy Ben Shabat <roy.mail.net@gmail.com>2025-09-08 11:32:40 +0300
committerRoy Ben Shabat <roy.mail.net@gmail.com>2025-09-08 11:32:40 +0300
commitd4a3a526d4d4665ed1a1645463d1262138b1f460 (patch)
tree5363b0509461dde1fbe7c4ec4794fb30a96fe344 /Software/Visual_Studio/PPC/Tango.PPC.Common/Telemetry
parent619d2b36f37b47221d5d46fc02ca79fe1579609d (diff)
downloadTango-d4a3a526d4d4665ed1a1645463d1262138b1f460.tar.gz
Tango-d4a3a526d4d4665ed1a1645463d1262138b1f460.zip
Dropped history sources by default.
Fixed unsent job resume telemetry.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Telemetry')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/Telemetry/TelemetrySettings.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Telemetry/TelemetrySettings.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Telemetry/TelemetrySettings.cs
index 7acf7e197..cf561eec9 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Telemetry/TelemetrySettings.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Telemetry/TelemetrySettings.cs
@@ -48,12 +48,12 @@ namespace Tango.PPC.Common.Telemetry
public TimeSpan DiagnosticsSamplingInterval { get; set; } = TimeSpan.FromSeconds(60);
public bool SendEvents { get; set; } = true;
public bool SendJobRuns { get; set; } = true;
- public bool SendJobRunsHistory { get; set; } = true;
+ public bool SendJobRunsHistory { get; set; } = false;
public bool SendJobStatus { get; set; } = true;
public bool SendLogs { get; set; } = true;
public bool SendMachineStatus { get; set; } = true;
public bool SendMachineUpdates { get; set; } = true;
- public bool SendMachineUpdatesHistory { get; set; } = true;
+ public bool SendMachineUpdatesHistory { get; set; } = false;
public bool SendWires { get; set; } = true;
public HashSet<LogCategory> LogCategories { get; set; } = new HashSet<LogCategory>() { LogCategory.Critical, LogCategory.Error, LogCategory.Warning };