Sunbird Obsrv
  • Introduction
    • The Value of Data
    • Data Value Chain
    • Challenges
    • The Solution: Obsrv
  • Core Concepts
    • Obsrv Overview
    • Key Capabilities
    • Datasets
    • Connectors
    • High Level Architecture
    • Tech Stack
    • Monitoring
  • Explore
    • Roadmap
    • Case Studies
      • Agri Climate Advisory
      • Learning Analytics at Population Scale
      • IOT Observations Infra
      • Data Driven Features in Learning Platform
      • Network Observability
      • Fraud Detection
    • Performance Benchmarks
  • Guides
    • Installation
      • AWS Installation Guide
      • Azure Installation Guide
      • GCP Installation Guide
      • OCI Installation Guide
      • Data Center Installation Guide
    • Dataset Management APIs
    • Dataset Management Console
    • Connector APIs
    • Data In & Out APIs
    • Alerts and Notification Channels APIs
    • Developer Guide
    • Example Datasets
    • Connectors Developer Guide
      • SDK Assumptions
      • Required Files
        • metadata.json
        • ui-config.json
        • metrics.yaml
        • alerts.yaml
      • Obsrv Base Setup
      • Dev Requirements
      • Interfaces
        • Stream Interfaces
        • Batch Interfaces
      • Classes
        • ConnectorContext Class
        • ConnectorStats Class
        • ConnectorState Class
        • ErrorData Class
        • MetricData Class
      • Verifying
      • Packaging Guide
      • Reference Implementations
    • Coming Soon!
  • Community
  • Previous Versions
    • SB-5.0 Version
      • Overview
      • USE
        • Release Notes
          • Obsrv 2.0-Beta
          • Obsrv 2.1.0
          • Obsrv 2.2.0
          • Obsrv 2.0.0-GA
          • Obsrv 5.3.0-GA
          • Release V 5.1.0
          • Release V 5.1.2
          • Release V 5.1.3
          • Release V 5.0.0
          • Release V 4.10.0
        • Installation Guide
        • Obsrv 2.0 Installation Guide
          • Getting Started with Obsrv Deployment Using Helm
        • System Requirements
      • LEARN
        • Functional Capabilities
        • Dependencies
        • Product Roadmap
        • Product & Developer Guide
          • Telemetry Service
          • Data Pipeline
          • Data Service
          • Data Product
            • On Demand Druid Exhaust Job
              • Component Diagram
              • ML CSV Reports
              • Folder Struture
          • Report Service
          • Report Configurator
          • Summarisers
      • ENGAGE
        • Discuss
        • Contribute to Obsrv
      • Raise an Issue
  • Release Notes
    • Obsrv 1.1.0 Beta Release
    • Obsrv 1.2.0-RC Release
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Previous Versions
  2. SB-5.0 Version
  3. LEARN
  4. Product & Developer Guide

Telemetry Service

PreviousProduct & Developer GuideNextData Pipeline

Last updated 2 years ago

Was this helpful?

Telemetry Service is a highly scalable micro service which allows various components in the Sunbird platform to send the event level data generated from various activities in the platform. These event level data could be either from clients such as the user apps or from micro services such as Sunbird Lern.

Key Features:

  1. Horizontally Scalable: The service can be scaled horizontally to handle increase in Telemetry data traffic as the operations are idempotent.

  2. Configurable storage: The service supports disk storage, Apache Kafka, Apache Cassandra as data storage.

  3. In-built compression: Efficient use of network bandwidth by compressing the messages sent to the data storage.

Installation Configuration Reference:

Property
Description
Default

localStorageEnabled

A boolean flag to enable on disk storage

true

dispatcher

Supported dispatchers are kafka, cassandra, file and console

console

kafkaHost

Host or IP address of the Kafka broker servers

none

topic

The kafka topic to which telemetry data will be pushed to

none

compression_type

Type of compression to use if kafka dispatcher is chosen. Possible values are none, gzip and snappy

none

filename

The name of the file to write data to if file dispatcher is chosen

telemetry-%DATE%.log

maxSize

Roll over max size for file based dispatched

100 Mb

maxFiles

Max files to keep for a file based dispatcher

100

partitionBy

Time based partitioning key for a Cassandra dispatcher

hour

keyspace

Keyspace name for a Cassandra dispatcher

none

cassandraTtl

TTL for retention of data for a Cassandra dispatcher

none

threads

Number of cpu threads to be used by the service

Default number of cpus on the machine

Telemetry documentation

telemetry.sunbird.org
GitHub - project-sunbird/sunbird-telemetry-service: API services for handling telemetry in sunbirdGitHub
Source Code
Logo
Telemetry Service Workflow