Skip to content
Open
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 @@ -24,13 +24,11 @@
"parts": {
"index": {
"type": "string",
"description": "The index to downsample",
"required": true
"description": "The index to downsample"
},
"target_index": {
"type": "string",
"description": "The name of the target index to store downsampled data",
"required": true
"description": "The name of the target index to store downsampled data"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
"parts": {
"model_id": {
"type": "string",
"description": "The unique identifier of the trained model.",
"required": true
"description": "The unique identifier of the trained model."
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
"parts": {
"model_id": {
"type": "string",
"description": "The unique identifier of the trained model.",
"required": true
"description": "The unique identifier of the trained model."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
"parts": {
"model_id": {
"type": "string",
"description": "The unique identifier of the trained model.",
"required": true
"description": "The unique identifier of the trained model."
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
"parts": {
"model_id": {
"type": "string",
"description": "The unique identifier of the trained model.",
"required": true
"description": "The unique identifier of the trained model."
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,17 @@
"params": {
"system_id": {
"type": "string",
"required": true,
"description": "Identifier of the monitored system"
},
"system_api_version": {
"type": "string",
"required": true,
"description": "API Version of the monitored system"
},
"interval": {
"type": "string",
"required": true,
"description": "Collection interval (e.g., '10s' or '10000ms') of the payload"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"parts": {
"transform_id": {
"type": "string",
"required": true,
"description": "The id of the transform."
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"parts": {
"transform_id": {
"type": "string",
"required": true,
"description": "The id of the transform."
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,36 +139,6 @@

- match: { hits.total: 0 }

# Missing a system_id causes it to fail
- do:
catch: bad_request
monitoring.bulk:
system_api_version: "7"
interval: "10s"
body:
- '{"index": {"_type": "default_type"}}'
- '{"field_1": "value_1"}'

# Missing a system_api_version causes it to fail
- do:
catch: bad_request
monitoring.bulk:
system_id: "kibana"
interval: "10s"
body:
- '{"index": {"_type": "default_type"}}'
- '{"field_1": "value_1"}'

# Missing an interval causes it to fail
- do:
catch: bad_request
monitoring.bulk:
system_id: "kibana"
system_api_version: "7"
body:
- '{"index": {"_type": "default_type"}}'
- '{"field_1": "value_1"}'

---
"Bulk indexing of monitoring data on closed indices should throw an export exception":
- skip:
Expand Down