Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 11ca62a

Browse files
Antoine-Csorccu
authored andcommittedMar 19, 2025··
feat: support status pages and services
1 parent 04de119 commit 11ca62a

File tree

4 files changed

+142
-0
lines changed

4 files changed

+142
-0
lines changed
 

‎packages/cli/src/constructs/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,5 @@ export * from './tcp-check'
2929
export * from './incidentio-alert-channel'
3030
export * from './msteams-alert-channel'
3131
export * from './telegram-alert-channel'
32+
export * from './status-page'
33+
export * from './status-pages-service'

‎packages/cli/src/constructs/project.ts

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import type { Runtime } from '../rest/runtimes'
88
import {
99
Check, AlertChannelSubscription, AlertChannel, CheckGroup, MaintenanceWindow, Dashboard,
1010
PrivateLocation, HeartbeatCheck, PrivateLocationCheckAssignment, PrivateLocationGroupAssignment,
11+
StatusPage, StatusPagesService,
1112
} from './'
1213
import { ResourceSync } from '../rest/projects'
1314
import { PrivateLocationApi } from '../rest/private-locations'
@@ -33,6 +34,8 @@ export interface ProjectData {
3334
'private-location-check-assignment': Record<string, PrivateLocationCheckAssignment>,
3435
'private-location-group-assignment': Record<string, PrivateLocationGroupAssignment>,
3536
dashboard: Record<string, Dashboard>,
37+
'status-page': Record<string, StatusPage>,
38+
'status-page-service': Record<string, StatusPagesService>,
3639
}
3740

3841
export class Project extends Construct {
@@ -49,6 +52,8 @@ export class Project extends Construct {
4952
'private-location-check-assignment': {},
5053
'private-location-group-assignment': {},
5154
dashboard: {},
55+
'status-page': {},
56+
'status-page-service': {},
5257
}
5358

5459
static readonly __checklyType = 'project'
@@ -99,6 +104,8 @@ export class Project extends Construct {
99104
...this.synthesizeRecord(this.data['private-location-check-assignment']),
100105
...this.synthesizeRecord(this.data['private-location-group-assignment']),
101106
...this.synthesizeRecord(this.data.dashboard),
107+
...this.synthesizeRecord(this.data['status-page-service']),
108+
...this.synthesizeRecord(this.data['status-page']),
102109
],
103110
}
104111
}
+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
import { Construct } from './construct'
2+
import { Session } from './project'
3+
import { StatusPagesService } from './status-pages-service'
4+
import { Ref } from './ref'
5+
6+
export interface StatusPagesCardProps {
7+
name: string
8+
services?: Array<StatusPagesService>
9+
}
10+
11+
export interface StatusPageProps {
12+
name: string
13+
url?: string
14+
cards?: StatusPagesCardProps[]
15+
/**
16+
* A subdomain name under "checklyhq.com". Needs to be unique across all users.
17+
* This is required if 'customDomain' is not specified.
18+
*/
19+
customUrl?: string
20+
/**
21+
* A custom user domain, e.g. "status.example.com". See the docs on updating your DNS and SSL usage.
22+
* This is required if 'customUrl' is not specified.
23+
*/
24+
customDomain?: string
25+
/**
26+
* A URL pointing to an image file.
27+
*/
28+
logo?: string
29+
/**
30+
* A URL pointing to an image file used as dashboard favicon.
31+
*/
32+
favicon?: string
33+
}
34+
35+
/**
36+
* Creates a Dashboard
37+
*
38+
* @remarks
39+
*
40+
* This class make use of the Dashboard endpoints.
41+
*/
42+
export class StatusPage extends Construct {
43+
name: string
44+
cardsServices?: null | Array<{name: string, services: Array<{ref: Ref}>}>
45+
cards?: StatusPagesCardProps[]
46+
url?: string
47+
customDomain?: string
48+
logo?: string
49+
favicon?: string
50+
51+
static readonly __checklyType = 'status-page'
52+
53+
/**
54+
* Constructs the Dashboard instance
55+
*
56+
* @param logicalId unique project-scoped resource name identification
57+
* @param props dashboard configuration properties
58+
*
59+
* {@link https://checklyhq.com/docs/cli/constructs-reference/#dashboard Read more in the docs}
60+
*/
61+
constructor (logicalId: string, props: StatusPageProps) {
62+
super(StatusPage.__checklyType, logicalId)
63+
this.name = props.name
64+
this.url = props.url
65+
this.cards = props.cards
66+
this.customDomain = props.customDomain
67+
this.logo = props.logo
68+
this.favicon = props.favicon
69+
this.cardsServices = null
70+
71+
if (!props.url && !props.customDomain) {
72+
throw new Error('Either a "customUrl" or "customDomain" must be specified.')
73+
}
74+
75+
Session.registerConstruct(this)
76+
}
77+
78+
synthesize (): any|null {
79+
return {
80+
name: this.name,
81+
url: this.url,
82+
customDomain: this.customDomain,
83+
logo: this.logo,
84+
favicon: this.favicon,
85+
cards: this.cards?.map(card => ({
86+
name: card.name,
87+
services: card
88+
.services
89+
?.map((service) => Ref.from(service.logicalId)),
90+
})),
91+
}
92+
}
93+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
import { Construct } from './construct'
2+
import { Session } from './project'
3+
4+
export interface StatusPagesServiceProps {
5+
name: string
6+
}
7+
8+
/**
9+
* Creates a Dashboard
10+
*
11+
* @remarks
12+
*
13+
* This class make use of the Dashboard endpoints.
14+
*/
15+
export class StatusPagesService extends Construct {
16+
name: string
17+
18+
static readonly __checklyType = 'status-page-service'
19+
20+
/**
21+
* Constructs the Dashboard instance
22+
*
23+
* @param logicalId unique project-scoped resource name identification
24+
* @param props dashboard configuration properties
25+
*
26+
* {@link https://checklyhq.com/docs/cli/constructs-reference/#dashboard Read more in the docs}
27+
*/
28+
constructor (logicalId: string, props: StatusPagesServiceProps) {
29+
super(StatusPagesService.__checklyType, logicalId)
30+
this.name = props.name
31+
32+
Session.registerConstruct(this)
33+
}
34+
35+
synthesize (): any|null {
36+
return {
37+
name: this.name,
38+
}
39+
}
40+
}

0 commit comments

Comments
 (0)
Please sign in to comment.