-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adding required publisher fields
Signed-off-by: nkoppisetty <[email protected]>
- Loading branch information
1 parent
6fbff1c
commit fe5f48b
Showing
21 changed files
with
241 additions
and
288 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 9 additions & 20 deletions
29
udf/anomaly-detection/tests/resources/configs/default_config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,22 @@ | ||
configs: | ||
- name: "fciAsset" | ||
- config_id: "druid-config" | ||
source: "druid" | ||
composite_keys: [ "assetId" ] | ||
metrics: [ "failed" , "degraded" ] | ||
static_threshold: | ||
weight: [ 0.7,0.3 ] | ||
upper_limit: [ 3, 3 ] | ||
druid_fetcher: | ||
dimensions: [ "ciStatus" ] | ||
datasource: "tech-ip-customer-interaction-metrics" | ||
datasource: "druid-metrics-table-name" | ||
group_by: [ "timestamp", "ciStatus" ] | ||
pivot: | ||
columns: | ||
- "ciStatus" | ||
static_threshold: | ||
weight: [ 0.7,0.3 ] | ||
upper_limit: [ 3, 3 ] | ||
- name: "service-mesh" | ||
composite_keys: [ "destination_asset_id" ] | ||
- config_id: "prometheus-config" | ||
source: "prometheus" | ||
composite_keys: [ "namespace", "name", "rollout_pod_template_hash" ] | ||
metrics: [ "error_rate" , "error_count" ] | ||
static_threshold: | ||
weight: [ 0.7,0.3 ] | ||
upper_limit: [ 3, 3 ] | ||
- name: "service-mesh-s2s" | ||
composite_keys: ["source_asset_id, destination_asset_id"] | ||
metrics: [ "error_rate", "error_count" ] | ||
static_threshold: | ||
weight: [ 0.7,0.3 ] | ||
upper_limit: [ 3, 3 ] | ||
- name: "argo-rollouts" | ||
composite_keys: [ "namespace", "name", "app", "rollouts_pod_template_hash" ] | ||
metrics: [ "namespace_app_rollouts_http_request_error_rate"] | ||
static_threshold: | ||
weight: [0.7] | ||
upper_limit: [3] | ||
upper_limit: [ 3, 3 ] |
17 changes: 10 additions & 7 deletions
17
udf/anomaly-detection/tests/resources/configs/users_config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.