Clean Logs
Delete every log entry stored in the project's Norbix Logging integration.
Logs & Monitoring provides observability across your project — structured logging, error tracking, audit trails, and real-time streaming. Every other module writes to it automatically. Cleans the logs.
This action is destructive or irreversible. Make sure you target the right item and confirm before running it.
This method is on the Hub surface (norbix.hub.logs) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.logs.cleanLogs();using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Logs.CleanLogsAsync(new CleanLogs());from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.logs.clean_logs()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Logs.CleanLogs(ctx, nil, &result)import 'package:norbix/norbix_hub.dart';
final hub = NorbixHub();
final result = await hub.logs.cleanLogs();In the dashboard
Manage this visually in Norbix Cloud — see Logs & Monitoring → Clean.
API reference
Full request and response for this endpoint: Clean Logs.
Last updated