ApplicationCreateCompleted is emitted when the application was created, with the region and plan the user chose.
(region, plan string, tracker *FlowTracker)
| 211 | // ApplicationCreateCompleted is emitted when the application was created, with |
| 212 | // the region and plan the user chose. |
| 213 | func ApplicationCreateCompleted(region, plan string, tracker *FlowTracker) Event { |
| 214 | return Event{EventApplicationCreateCompleted, map[string]any{ |
| 215 | "region": region, |
| 216 | "plan": plan, |
| 217 | "duration_ms": tracker.DurationMS(), |
| 218 | }} |
| 219 | } |
| 220 | |
| 221 | // ApplicationCreateAborted is emitted when the user stopped the creation flow, |
| 222 | // with the step they stopped at and the reason why. |