Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,9 @@ to be detected.
dataSource: url;

@doc("""
Number of top contributed
variables for one anomalous time stamp in the response. The default is
10.
Number of top contributed variables for one anomalous time stamp in the response.
""")
topContributorCount: int32;
topContributorCount?: int32 = 10;
Comment thread
heaths marked this conversation as resolved.

@doc("""
Start date/time of data for detection, which should
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,8 @@
"topContributorCount": {
"type": "integer",
"format": "int32",
"description": "Number of top contributed\nvariables for one anomalous time stamp in the response. The default is\n10."
"description": "Number of top contributed variables for one anomalous time stamp in the response.",
"default": 10
},
"startTime": {
"type": "string",
Expand All @@ -952,7 +953,6 @@
"description": "Detection request for batch inference. This is an asynchronous inference that\nwill need another API to get detection results.",
"required": [
"dataSource",
"topContributorCount",
"startTime",
"endTime"
]
Expand Down