Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Generator: Update SDK /services/observability#2264

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
marceljk merged 2 commits intomainfromgenerator-bot-17464081170/observability
Sep 5, 2025
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletionCHANGELOG.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
## Release (2025-MM-DD)
- `modelserving`: [v0.2.1](services/modelserving/CHANGELOG.md#v021)
- **Feature:** Extend enums in field `type` in model `Model`: `audio`, `image`
- `observability`:
- `observability`:
- [v0.10.1](services/observability/CHANGELOG.md#v0110)
- **Feature:** Add attributes `jaeger_http_traces_url`, `otlp_grpc_traces_url` and `otlp_http_traces_url` to `InstanceSensitiveData` model
- [v0.10.0](services/observability/CHANGELOG.md#v0100)
- **Feature:** Add support for HTTP checks and cert checks
- [v0.9.2](services/observability/CHANGELOG.md#v092)
Expand Down
3 changes: 3 additions & 0 deletionsservices/observability/CHANGELOG.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
# v0.10.1
- **Feature:** Add attributes `jaeger_http_traces_url`, `otlp_grpc_traces_url` and `otlp_http_traces_url` to `InstanceSensitiveData` model

## v0.10.0
- **Feature:** Add support for HTTP checks and cert checks

Expand Down
2 changes: 1 addition & 1 deletionservices/observability/pyproject.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,7 +3,7 @@ name = "stackit-observability"

[tool.poetry]
name = "stackit-observability"
version = "v0.10.0"
version = "v0.10.1"
authors = [
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
]
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -38,6 +38,9 @@ class InstanceSensitiveData(BaseModel):
grafana_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="grafanaUrl")
grafana_use_stackit_sso: StrictBool = Field(alias="grafanaUseStackitSso")
instance: Annotated[str, Field(min_length=1, strict=True, max_length=63)]
jaeger_http_traces_url: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(
default=None, alias="jaegerHttpTracesUrl"
)
jaeger_traces_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="jaegerTracesUrl")
jaeger_ui_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="jaegerUiUrl")
logs_push_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="logsPushUrl")
Expand All@@ -48,6 +51,8 @@ class InstanceSensitiveData(BaseModel):
metrics_retention_time_raw: Annotated[int, Field(strict=True, ge=0)] = Field(alias="metricsRetentionTimeRaw")
metrics_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="metricsUrl")
name: Optional[Annotated[str, Field(strict=True, max_length=300)]] = ""
otlp_grpc_traces_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpGrpcTracesUrl")
otlp_http_traces_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpHttpTracesUrl")
otlp_traces_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpTracesUrl")
plan: PlanModel
push_metrics_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="pushMetricsUrl")
Expand All@@ -63,6 +68,7 @@ class InstanceSensitiveData(BaseModel):
"grafanaUrl",
"grafanaUseStackitSso",
"instance",
"jaegerHttpTracesUrl",
"jaegerTracesUrl",
"jaegerUiUrl",
"logsPushUrl",
Expand All@@ -73,6 +79,8 @@ class InstanceSensitiveData(BaseModel):
"metricsRetentionTimeRaw",
"metricsUrl",
"name",
"otlpGrpcTracesUrl",
"otlpHttpTracesUrl",
"otlpTracesUrl",
"plan",
"pushMetricsUrl",
Expand DownExpand Up@@ -142,6 +150,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
"grafanaUrl": obj.get("grafanaUrl"),
"grafanaUseStackitSso": obj.get("grafanaUseStackitSso"),
"instance": obj.get("instance"),
"jaegerHttpTracesUrl": obj.get("jaegerHttpTracesUrl"),
"jaegerTracesUrl": obj.get("jaegerTracesUrl"),
"jaegerUiUrl": obj.get("jaegerUiUrl"),
"logsPushUrl": obj.get("logsPushUrl"),
Expand All@@ -152,6 +161,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
"metricsRetentionTimeRaw": obj.get("metricsRetentionTimeRaw"),
"metricsUrl": obj.get("metricsUrl"),
"name": obj.get("name") if obj.get("name") is not None else "",
"otlpGrpcTracesUrl": obj.get("otlpGrpcTracesUrl"),
"otlpHttpTracesUrl": obj.get("otlpHttpTracesUrl"),
"otlpTracesUrl": obj.get("otlpTracesUrl"),
"plan": PlanModel.from_dict(obj["plan"]) if obj.get("plan") is not None else None,
"pushMetricsUrl": obj.get("pushMetricsUrl"),
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp