Skip to content

Commit abf3c65

Browse files
Generate observability
1 parent b7bc6f6 commit abf3c65

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

services/observability/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e64886dd0847341800d7191ed193b75413be998
1+
b0b8472dbda9d5f57844ecdb747888008b0814f1

services/observability/src/stackit/observability/models/instance_sensitive_data.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ class InstanceSensitiveData(BaseModel):
5454
metrics_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="metricsUrl")
5555
name: Optional[Annotated[str, Field(strict=True, max_length=300)]] = ""
5656
otlp_grpc_traces_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpGrpcTracesUrl")
57+
otlp_http_logs_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpHttpLogsUrl")
5758
otlp_http_traces_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpHttpTracesUrl")
5859
otlp_traces_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpTracesUrl")
5960
plan: PlanModel
@@ -84,6 +85,7 @@ class InstanceSensitiveData(BaseModel):
8485
"metricsUrl",
8586
"name",
8687
"otlpGrpcTracesUrl",
88+
"otlpHttpLogsUrl",
8789
"otlpHttpTracesUrl",
8890
"otlpTracesUrl",
8991
"plan",
@@ -170,6 +172,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
170172
"metricsUrl": obj.get("metricsUrl"),
171173
"name": obj.get("name") if obj.get("name") is not None else "",
172174
"otlpGrpcTracesUrl": obj.get("otlpGrpcTracesUrl"),
175+
"otlpHttpLogsUrl": obj.get("otlpHttpLogsUrl"),
173176
"otlpHttpTracesUrl": obj.get("otlpHttpTracesUrl"),
174177
"otlpTracesUrl": obj.get("otlpTracesUrl"),
175178
"plan": PlanModel.from_dict(obj["plan"]) if obj.get("plan") is not None else None,

0 commit comments

Comments
 (0)