PostHog · Schema

_LogsServicesSummary

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
top_services_count integer Number of top services included in the volume_share aggregate (up to 5).
top_services_volume_share_pct number Combined volume share (percent) of the top services by log_count.
View JSON Schema on GitHub

JSON Schema

posthog-logsservicessummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_LogsServicesSummary",
  "title": "_LogsServicesSummary",
  "type": "object",
  "properties": {
    "top_services_count": {
      "type": "integer",
      "description": "Number of top services included in the volume_share aggregate (up to 5)."
    },
    "top_services_volume_share_pct": {
      "type": "number",
      "format": "double",
      "description": "Combined volume share (percent) of the top services by log_count."
    }
  },
  "required": [
    "top_services_count",
    "top_services_volume_share_pct"
  ]
}