edgecom

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 27, 2024 License: MIT Imports: 0 Imported by: 0

Documentation

Overview

Package edgecom implements a time series data service for EdgeCom Energy.

Architecture

The service is structured into several key packages:

  • api: External API client for data fetching
  • database: TimescaleDB integration for time series storage
  • grpc: gRPC service implementation
  • models: Shared data structures
  • scheduler: Background data fetching and processing

Key Features

  • Historical Data: The service can bootstrap up to 2 years of historical data and maintains it through periodic updates.

  • Time Series Operations: Supports various aggregations (MIN, MAX, AVG, SUM) over different time windows (1m, 5m, 1h, 1d).

  • Performance: Uses TimescaleDB for efficient time series storage and implements caching for frequently accessed data.

Example Usage

client := grpc.NewTimeSeriesServiceClient(conn)
resp, err := client.QueryTimeSeries(ctx, &pb.TimeSeriesRequest{
    StartTime: startProto,
    EndTime:   endProto,
    Window:    "1h",
    Aggregation: "AVG",
})

For more information about specific packages, see their respective documentation.

Directories

Path Synopsis
Package api provides functionality for interacting with the EdgeCom Energy API.
Package api provides functionality for interacting with the EdgeCom Energy API.
Package database implements TimescaleDB-backed time series data storage.
Package database implements TimescaleDB-backed time series data storage.
mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
Package server implements the gRPC service for time series data querying.
Package server implements the gRPC service for time series data querying.
mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
Package models defines the core data structures used throughout the EdgeCom service.
Package models defines the core data structures used throughout the EdgeCom service.
Package scheduler implements background data fetching and processing for time series data.
Package scheduler implements background data fetching and processing for time series data.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL