rybbit-io-rybbit
- Description:
Elevate your web analytics with Rybbit! This open-source, privacy-friendly alternative to Google Analytics is easy to set up and use. Gain insights with advanced features like session replays and real-time dashboards.
- Copyright:
- 2026 Eyevinn Technology AB
- See:
-
- Online docs for further information
Methods
(async, static) createRybbitIoRybbitInstance(context, body) → {RybbitIoRybbit}
- Description:
Create a new Rybbit instance
Example
import { Context } from '@osaas/client-core';
import { createRybbitIoRybbitInstance } from '@osaas/client-services';
const ctx = new Context();
const body: RybbitIoRybbitConfig = { name: 'myinstance', ... };
const instance = await createRybbitIoRybbitInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
RybbitIoRybbitConfig | Service instance configuration |
Returns:
- Service instance
- Type
- RybbitIoRybbit
(async, static) getRybbitIoRybbitInstance(context, name) → {RybbitIoRybbit}
- Description:
Get a Rybbit instance
Example
import { Context } from '@osaas/client-core';
import { getRybbitIoRybbitInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getRybbitIoRybbitInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the rybbit to be retrieved |
Returns:
- Service instance
- Type
- RybbitIoRybbit
(async, static) removeRybbitIoRybbitInstance(context, name)
- Description:
Remove a Rybbit instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the rybbit to be removed |