burke-software-glitchtip
- Description:
Seamlessly monitor and track app issues with GlitchTip! Experience smooth deployment on DigitalOcean or Heroku, complete with robust backend and frontend integration, plus Postgres and Redis flexibility.
- Copyright:
- 2026 Eyevinn Technology AB
Methods
(async, static) createBurkeSoftwareGlitchtipInstance(context, body) → {BurkeSoftwareGlitchtip}
- Description:
Create a new GlitchTip instance
Example
import { Context } from '@osaas/client-core';
import { createBurkeSoftwareGlitchtipInstance } from '@osaas/client-services';
const ctx = new Context();
const body: BurkeSoftwareGlitchtipConfig = { name: 'myinstance', ... };
const instance = await createBurkeSoftwareGlitchtipInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
BurkeSoftwareGlitchtipConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getBurkeSoftwareGlitchtipInstance(context, name) → {BurkeSoftwareGlitchtip}
- Description:
Get a GlitchTip instance
Example
import { Context } from '@osaas/client-core';
import { getBurkeSoftwareGlitchtipInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getBurkeSoftwareGlitchtipInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the glitchtip to be retrieved |
Returns:
- Service instance
(async, static) removeBurkeSoftwareGlitchtipInstance(context, name)
- Description:
Remove a GlitchTip instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the glitchtip to be removed |