Get Log Settings
Fetch the per-project log settings (flags).
Logs & Monitoring provides observability across your project — structured logging, error tracking, audit trails, and real-time streaming. Every other module writes to it automatically. This method returns the log settings available in your project.
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.getLogSettings();using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Logs.GetLogSettingsAsync(new GetLogSettings());from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.logs.get_log_settings()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Logs.GetLogSettings(ctx, nil, &result)import 'package:norbix/norbix_hub.dart';
final hub = NorbixHub();
final result = await hub.logs.getLogSettings();In the dashboard
Manage this visually in Norbix Cloud — see Logs & Monitoring → Settings.
API reference
Full request and response for this endpoint: Get Log Settings.
Last updated