VOOZH about

URL: https://www.nuget.org/packages/Konnektr.AgeDigitalTwins/

⇱ NuGet Gallery | Konnektr.AgeDigitalTwins 1.24.5




Konnektr.AgeDigitalTwins 1.24.5

dotnet add package Konnektr.AgeDigitalTwins --version 1.24.5
 
 
NuGet\Install-Package Konnektr.AgeDigitalTwins -Version 1.24.5
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Konnektr.AgeDigitalTwins" Version="1.24.5" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Konnektr.AgeDigitalTwins" Version="1.24.5" />
 
Directory.Packages.props
<PackageReference Include="Konnektr.AgeDigitalTwins" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Konnektr.AgeDigitalTwins --version 1.24.5
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Konnektr.AgeDigitalTwins, 1.24.5"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Konnektr.AgeDigitalTwins@1.24.5
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Konnektr.AgeDigitalTwins&version=1.24.5
 
Install as a Cake Addin
#tool nuget:?package=Konnektr.AgeDigitalTwins&version=1.24.5
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Konnektr Graph

Digital Twins for Apache AGE

👁 Deploy Graph
👁 License
👁 Documentation
👁 GitHub

Konnektr Graph is a high-performance, Azure Digital Twins-compatible digital twin platform built on PostgreSQL with Apache AGE. Deploy as a fully managed service or self-host in your own infrastructure.

→ Deploy in 60 seconds | Free tier + $99/mo production


🚀 Quick Links


✨ Key Features

🔄 Azure Digital Twins Compatible

  • Drop-in replacement for Azure Digital Twins API
  • Use standard Azure SDKs (.NET, Python, JavaScript)
  • Easy migration from Azure with minimal code changes
  • Full DTDL (Digital Twins Definition Language) support

🎯 Built for Performance

  • PostgreSQL + Apache AGE - Enterprise-grade graph database
  • Powerful Cypher queries - Complex graph traversals
  • Horizontal scaling - Handles millions of twins
  • Real-time eventing - Stream state changes instantly

🔌 Event Streaming

  • Multiple sinks - Kafka, Azure Data Explorer, MQTT, and more
  • CloudEvents standard - Industry-standard event format
  • Flexible routing - Route events based on type and filters
  • Durable & real-time - Both lifecycle and telemetry events

🤖 AI-Ready

  • Model Context Protocol (MCP) - Native LLM integration
  • Semantic queries - AI-powered twin discovery
  • Rich metadata - DTDL models provide structured context

🎯 Quick Start

Option 1: Hosted (Recommended)

Get started in minutes with our fully managed platform:

# Install the Azure Digital Twins SDK
# pip install azure-digitaltwins-core requests

import requests

# 1. Get access token from Auth0 (not Azure AD)
token_url = "https://auth.konnektr.io/oauth/token"
token_data = {
 "client_id": "YOUR_CLIENT_ID",
 "client_secret": "YOUR_CLIENT_SECRET",
 "audience": "https://graph.konnektr.io",
 "grant_type": "client_credentials"
}
token_response = requests.post(token_url, json=token_data)
access_token = token_response.json().get("access_token")

# 2. Use the Azure Digital Twins SDK with your Konnektr Graph endpoint
from azure.digitaltwins.core import DigitalTwinsClient
from azure.core.credentials import AccessToken
from datetime import datetime

class StaticTokenCredential:
 def __init__(self, token):
 self.token = token
 
 def get_token(self, *scopes, **kwargs):
 # Return token valid for 1 hour (adjust based on your token expiry)
 expires_on = int(datetime.now().timestamp()) + 3600
 return AccessToken(self.token, expires_on)

# Connect to your Konnektr Graph instance
client = DigitalTwinsClient(
 "https://your-resource-id.api.graph.konnektr.io",
 StaticTokenCredential(access_token)
)

# Use the standard Azure Digital Twins API
twin = client.get_digital_twin("my-twin-id")

→ View full hosted quickstart

Option 2: Self-Hosted

Deploy in your own infrastructure with Helm:

# Add Konnektr Helm repository
helm repo add konnektr https://konnektr-io.github.io/charts

# Install with your custom values
helm install my-graph konnektr/agedigitaltwins -f values.yaml

→ View full self-host guide


🏗️ Use Cases

  • Smart Buildings - Model and manage building systems, sensors, and spaces
  • Industrial IoT - Digital twins for manufacturing, supply chain, and logistics
  • Smart Cities - Infrastructure monitoring and urban planning
  • Healthcare - Patient monitoring and facility management
  • Energy & Utilities - Grid management and renewable energy systems
  • Automotive - Fleet management and connected vehicle platforms

📊 Deployment Options

Hosted Self-Hosted
Setup Time 5 minutes 1-2 hours
Maintenance Zero - fully managed You manage updates
Scaling Automatic Manual configuration
Azure SDK Compatible ✅ Yes ✅ Yes
Direct DB Access ❌ No ✅ Yes
Custom Auth Auth0 (managed) BYO identity provider
Best For Most users Advanced users, compliance needs

→ See detailed comparison


📚 Documentation


🤝 Contributing

We welcome contributions! Whether you're fixing bugs, improving documentation, or proposing new features:

  1. Open an issue to discuss your idea
  2. Fork the repository and create a feature branch
  3. Make your changes with clear commit messages
  4. Submit a pull request

Please read our for more details.


💬 Community & Support


📄 License

This project is licensed under the Apache License 2.0 - see the file for details.


🌟 Why Konnektr Graph?

Open Source Foundation - Built on PostgreSQL and Apache AGE, trusted by enterprises worldwide

Azure Compatible - Use your existing Azure Digital Twins knowledge and code

Production Ready - Battle-tested event streaming, validation, and monitoring

Flexible Deployment - Choose hosted simplicity or self-hosted control

Active Development - Regular updates, responsive maintainers, growing community


Ready to build your digital twin solution?

Read the Docs | Deploy Self-Hosted

Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.24.5 79 6/17/2026
1.24.4 83 6/17/2026
1.24.3 90 6/10/2026
1.24.2 93 6/2/2026
1.24.1 95 6/2/2026
1.24.0 101 5/29/2026
1.23.0 108 5/29/2026
1.20.3 127 3/27/2026
1.20.2 110 3/27/2026
1.20.1 109 3/27/2026
1.20.0 109 3/24/2026
1.19.5 108 3/23/2026
1.19.4 108 3/7/2026
1.19.3 100 3/6/2026
1.19.2 104 3/6/2026
1.19.1 108 3/5/2026
1.19.0 112 2/23/2026
1.18.0 122 1/29/2026
1.18.0-preview.30 72 1/28/2026
1.18.0-preview.29 82 1/4/2026
Loading failed