For the complete documentation index, see llms.txt. This page is also available as Markdown.

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 method is on the Hub surface (norbix.hub.logs) — call it from admin tooling or IaC.

These examples assume the SDK is installed and your credentials are set as environment variables — each client reads them automatically, so the constructors below take no arguments. See Install a Norbix SDK.

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