Skip to content

Commit b3f2ff6

Browse files
RubenCerna2079Ruben Cernaabhishekkumams
authoredJan 14, 2025··
Move Global Log-Level (#2508)
## Why make this change? Solves #2452 ## What is this change? Moves the log-level property from `/runtime` to `/runtime/telemetry` where it was decided it should live. It also changes the files so that the log-level property is under `TelemetryOptions` instead of `RuntimeOptions` and fix any tests related to the changes. ## How was this tested? - [X] Integration Tests - [ ] Unit Tests --------- Co-authored-by: Ruben Cerna <rcernaserna@microsoft.com> Co-authored-by: Abhishek Kumar <102276754+abhishekkumams@users.noreply.github.com>
1 parent b019d52 commit b3f2ff6

File tree

6 files changed

+41
-39
lines changed

6 files changed

+41
-39
lines changed
 

‎schemas/dab.draft.schema.json

+22-22
Original file line numberDiff line numberDiff line change
@@ -297,28 +297,6 @@
297297
}
298298
}
299299
},
300-
"log-level": {
301-
"type": "object",
302-
"description": "Global configuration of log level",
303-
"additionalProperties": false,
304-
"properties": {
305-
"level": {
306-
"description": "Defines logging severity levels, when in default value it will set logging level based on 'host: mode' property",
307-
"type": "string",
308-
"default": null,
309-
"enum": [
310-
"trace",
311-
"debug",
312-
"information",
313-
"warning",
314-
"error",
315-
"critical",
316-
"none",
317-
null
318-
]
319-
}
320-
}
321-
},
322300
"cache": {
323301
"type": "object",
324302
"additionalProperties": false,
@@ -393,6 +371,28 @@
393371
"required": [
394372
"endpoint"
395373
]
374+
},
375+
"log-level": {
376+
"type": "object",
377+
"description": "Global configuration of log level",
378+
"additionalProperties": false,
379+
"properties": {
380+
"level": {
381+
"description": "Defines logging severity levels, when in default value it will set logging level based on 'host: mode' property",
382+
"type": "string",
383+
"default": null,
384+
"enum": [
385+
"trace",
386+
"debug",
387+
"information",
388+
"warning",
389+
"error",
390+
"critical",
391+
"none",
392+
null
393+
]
394+
}
395+
}
396396
}
397397
}
398398
}

‎src/Config/ObjectModel/RuntimeConfig.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -549,8 +549,9 @@ public uint GetPaginationLimit(int? first)
549549
/// </summary>
550550
public bool IsLogLevelNull() =>
551551
Runtime is null ||
552-
Runtime.LoggerLevel is null ||
553-
Runtime.LoggerLevel.Value is null;
552+
Runtime.Telemetry is null ||
553+
Runtime.Telemetry.LoggerLevel is null ||
554+
Runtime.Telemetry.LoggerLevel.Value is null;
554555

555556
/// <summary>
556557
/// Takes in the RuntimeConfig object and checks the LogLevel.
@@ -561,7 +562,7 @@ Runtime.LoggerLevel is null ||
561562
/// </summary>
562563
public static LogLevel GetConfiguredLogLevel(RuntimeConfig runtimeConfig)
563564
{
564-
LogLevel? value = runtimeConfig.Runtime?.LoggerLevel?.Value;
565+
LogLevel? value = runtimeConfig.Runtime?.Telemetry?.LoggerLevel?.Value;
565566
if (value is not null)
566567
{
567568
return (LogLevel)value;

‎src/Config/ObjectModel/RuntimeOptions.cs

+1-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ public record RuntimeOptions
1616
public EntityCacheOptions? Cache { get; init; }
1717
public PaginationOptions? Pagination { get; init; }
1818

19-
[JsonPropertyName("log-level")]
20-
public LogLevelOptions? LoggerLevel { get; init; }
21-
2219
[JsonConstructor]
2320
public RuntimeOptions(
2421
RestRuntimeOptions? Rest,
@@ -27,8 +24,7 @@ public RuntimeOptions(
2724
string? BaseRoute = null,
2825
TelemetryOptions? Telemetry = null,
2926
EntityCacheOptions? Cache = null,
30-
PaginationOptions? Pagination = null,
31-
LogLevelOptions? LoggerLevel = null)
27+
PaginationOptions? Pagination = null)
3228
{
3329
this.Rest = Rest;
3430
this.GraphQL = GraphQL;
@@ -37,7 +33,6 @@ public RuntimeOptions(
3733
this.Telemetry = Telemetry;
3834
this.Cache = Cache;
3935
this.Pagination = Pagination;
40-
this.LoggerLevel = LoggerLevel;
4136
}
4237

4338
/// <summary>
+7-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33

4+
using System.Text.Json.Serialization;
5+
46
namespace Azure.DataApiBuilder.Config.ObjectModel;
57

68
/// <summary>
79
/// Represents the options for telemetry.
810
/// </summary>
9-
public record TelemetryOptions(ApplicationInsightsOptions? ApplicationInsights = null, OpenTelemetryOptions? OpenTelemetry = null)
10-
{ }
11+
public record TelemetryOptions(ApplicationInsightsOptions? ApplicationInsights = null, OpenTelemetryOptions? OpenTelemetry = null, LogLevelOptions? LoggerLevel = null)
12+
{
13+
[JsonPropertyName("log-level")]
14+
public LogLevelOptions? LoggerLevel { get; init; } = LoggerLevel;
15+
}

‎src/Service.Tests/Configuration/ConfigurationTests.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -3480,7 +3480,7 @@ public void TestExistingLogLevels(LogLevel expectedLevel)
34803480
string configWithCustomLogLevelJson = configWithCustomLogLevel.ToJson();
34813481
Assert.IsTrue(RuntimeConfigLoader.TryParseConfig(configWithCustomLogLevelJson, out RuntimeConfig deserializedRuntimeConfig));
34823482

3483-
Assert.AreEqual(expectedLevel, deserializedRuntimeConfig.Runtime.LoggerLevel.Value);
3483+
Assert.AreEqual(expectedLevel, deserializedRuntimeConfig.Runtime.Telemetry.LoggerLevel.Value);
34843484
}
34853485

34863486
/// <summary>
@@ -3528,10 +3528,11 @@ public void LogLevelSerialization(LogLevel expectedLevel)
35283528
using (JsonDocument parsedDocument = JsonDocument.Parse(serializedConfig))
35293529
{
35303530
JsonElement root = parsedDocument.RootElement;
3531+
JsonElement runtimeElement = root.GetProperty("runtime");
35313532

35323533
//Validate log-level property exists in runtime
3533-
JsonElement runtimeElement = root.GetProperty("runtime");
3534-
bool logLevelPropertyExists = runtimeElement.TryGetProperty("log-level", out JsonElement logLevelElement);
3534+
JsonElement telemetryElement = runtimeElement.GetProperty("telemetry");
3535+
bool logLevelPropertyExists = telemetryElement.TryGetProperty("log-level", out JsonElement logLevelElement);
35353536
Assert.AreEqual(expected: true, actual: logLevelPropertyExists);
35363537

35373538
//Validate level property inside log-level is of expected value
@@ -3559,7 +3560,7 @@ private static RuntimeConfig InitializeRuntimeWithLogLevel(LogLevel? expectedLev
35593560
Rest: new(),
35603561
GraphQL: new(),
35613562
Host: new(null, null),
3562-
LoggerLevel: logLevelOptions
3563+
Telemetry: new(LoggerLevel: logLevelOptions)
35633564
),
35643565
Entities: baseConfig.Entities
35653566
);

‎src/Service.Tests/Unittests/RuntimeConfigLoaderJsonDeserializerTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ public void TestNullableOptionalProps()
260260

261261
// Test with empty sub properties of runtime
262262
minJson.Append(@"{ ""rest"": { }, ""graphql"": { },
263-
""base-route"" : """", ""log-level"" : { },");
263+
""base-route"" : """",");
264264
StringBuilder minJsonWithHostSubProps = new(minJson + @"""telemetry"" : { }, ""host"" : ");
265265
StringBuilder minJsonWithTelemetrySubProps = new(minJson + @"""host"" : { }, ""telemetry"" : ");
266266

@@ -273,7 +273,7 @@ public void TestNullableOptionalProps()
273273
TryParseAndAssertOnDefaults("{" + emptyHostSubProps, out _);
274274

275275
// Test with empty telemetry sub-properties
276-
minJsonWithTelemetrySubProps.Append(@"{ ""application-insights"": { } } }");
276+
minJsonWithTelemetrySubProps.Append(@"{ ""application-insights"": { }, ""log-level"": { } } }");
277277

278278
string emptyTelemetrySubProps = minJsonWithTelemetrySubProps + "}";
279279
TryParseAndAssertOnDefaults("{" + emptyTelemetrySubProps, out _);

0 commit comments

Comments
 (0)
Please sign in to comment.