mirror of
https://github.com/SigNoz/signoz.git
synced 2026-06-25 01:20:32 +01:00
Some checks failed
build-staging / js-build (push) Has been cancelled
build-staging / go-build (push) Has been cancelled
build-staging / staging (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
build-staging / prepare (push) Has been cancelled
* feat(web): add support for sentry and pylon * feat(web): add support for sentry and pylon * feat(web): add support for sentry and pylon * feat(web): removed bootdata.ts and maintaining websettings as single source of truth * feat(web): update the example.yaml --------- Co-authored-by: SagarRajput-7 <sagar@signoz.io>
75 lines
1.3 KiB
JSON
75 lines
1.3 KiB
JSON
{
|
|
"required": [
|
|
"posthog",
|
|
"appcues",
|
|
"sentry",
|
|
"pylon"
|
|
],
|
|
"additionalProperties": false,
|
|
"definitions": {
|
|
"Appcues": {
|
|
"required": [
|
|
"enabled"
|
|
],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"type": "object"
|
|
},
|
|
"Posthog": {
|
|
"required": [
|
|
"enabled"
|
|
],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"type": "object"
|
|
},
|
|
"Pylon": {
|
|
"required": [
|
|
"enabled"
|
|
],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"type": "object"
|
|
},
|
|
"Sentry": {
|
|
"required": [
|
|
"enabled"
|
|
],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"type": "object"
|
|
}
|
|
},
|
|
"properties": {
|
|
"appcues": {
|
|
"$ref": "#/definitions/Appcues"
|
|
},
|
|
"posthog": {
|
|
"$ref": "#/definitions/Posthog"
|
|
},
|
|
"pylon": {
|
|
"$ref": "#/definitions/Pylon"
|
|
},
|
|
"sentry": {
|
|
"$ref": "#/definitions/Sentry"
|
|
}
|
|
},
|
|
"type": "object"
|
|
}
|