honeycomb_marker_create
Create markers for datasets to highlight significant events or time ranges, including start/end times, message, type, and optional URL, using the specified dataset slug.
Instructions
Create a new marker for a dataset
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasetSlug | Yes | Dataset slug to create marker for, or 'all' for all datasets | |
end_time | No | End time for the marker (ISO format), optional for point-in-time markers | |
message | Yes | Message for the marker | |
start_time | Yes | Start time for the marker (ISO format) | |
type | Yes | Type of marker | |
url | No | URL associated with the marker |
Input Schema (JSON Schema)
{
"properties": {
"datasetSlug": {
"description": "Dataset slug to create marker for, or 'all' for all datasets",
"type": "string"
},
"end_time": {
"description": "End time for the marker (ISO format), optional for point-in-time markers",
"type": "string"
},
"message": {
"description": "Message for the marker",
"type": "string"
},
"start_time": {
"description": "Start time for the marker (ISO format)",
"type": "string"
},
"type": {
"description": "Type of marker",
"type": "string"
},
"url": {
"description": "URL associated with the marker",
"type": "string"
}
},
"required": [
"datasetSlug",
"message",
"type",
"start_time"
],
"type": "object"
}