The Tideways Event Create Command

You can create events for the timeline using the command line tool by calling:

$ tideways event create \
	acme/myapp17 \
	release \
	"Deployed v1.2.5"

Command Arguments

The arguments for the command in order are:

--description, -d

(optional value) Default is empty

--compareAfterMinutes, -m

(optional value) Default is 90 minutes.

This is the time span after release event that will be compared

--environment, -e

(optional value) Default is production.

Environment name to attach this event to.

--service, -s

(optional value) Defaults to the application’s default service.

Service name to attach this event to.

appName

(required value) Name of the project

eventType

(required value) eventType currently supports release or marker for deployments and releases of the project

title

(required value) Title of your release

Example with optional value  --compareAfterMinutes:

$ tideways event create \
	--compareAfterMinutes=15 \
	acme/myapp17 \
	release \
	"Deployed v1.2.5"

Types of Events

The following event types exist:

release

Release events represent the time of a deployment of a new software version.

marker

A marker event represents an arbitrary event of technical or non-technical nature, such as Upgrades, Reboots or Markeitng Campaigns.

Still need help? Email [email protected]