PostHog · Schema

_LogsSparklineBucket

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
time string Bucket start time (ISO 8601).
severity string Severity label when sparklineBreakdownBy="severity". Present only for severity-broken-down sparklines.
service string Service name when sparklineBreakdownBy="service". Present only for service-broken-down sparklines.
count integer
View JSON Schema on GitHub

JSON Schema

posthog-logssparklinebucket-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_LogsSparklineBucket",
  "title": "_LogsSparklineBucket",
  "type": "object",
  "properties": {
    "time": {
      "type": "string",
      "description": "Bucket start time (ISO 8601)."
    },
    "severity": {
      "type": "string",
      "description": "Severity label when sparklineBreakdownBy=\"severity\". Present only for severity-broken-down sparklines."
    },
    "service": {
      "type": "string",
      "description": "Service name when sparklineBreakdownBy=\"service\". Present only for service-broken-down sparklines."
    },
    "count": {
      "type": "integer"
    }
  },
  "required": [
    "count",
    "time"
  ]
}