PostHog · Schema

LogsSamplingRuleSimulateResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
estimated_reduction_pct number Rough percent of log volume this rule would drop (0–100). Stub until ClickHouse-backed estimate ships.
notes string Human-readable caveats for the estimate.
View JSON Schema on GitHub

JSON Schema

posthog-logssamplingrulesimulateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogsSamplingRuleSimulateResponse",
  "title": "LogsSamplingRuleSimulateResponse",
  "type": "object",
  "properties": {
    "estimated_reduction_pct": {
      "type": "number",
      "format": "double",
      "description": "Rough percent of log volume this rule would drop (0\u2013100). Stub until ClickHouse-backed estimate ships."
    },
    "notes": {
      "type": "string",
      "description": "Human-readable caveats for the estimate."
    }
  },
  "required": [
    "estimated_reduction_pct",
    "notes"
  ]
}