Enforcement and Telemetry Policy

Document Version: 1.0.0 Last Updated: 2026-01-25

This document describes how stella-ops.org verifies compliance with the Community Plugin Grant and free tier limits, including audit rights, telemetry options, and privacy safeguards.


1. Compliance Philosophy

Stella Ops is committed to:

  1. Trust-based compliance - We assume good faith from our users
  2. Minimal intrusion - Verification should not burden legitimate users
  3. Privacy by design - No collection of customer content or sensitive data
  4. Transparency - Clear documentation of what we collect and why

2. Audit Rights

2.1 When Audits May Occur

stella-ops.org reserves the right to request compliance verification:

2.2 Audit Process

Step 1: Notice

Step 2: Documentation Request

Step 3: Review

Step 4: Resolution

2.3 Audit Safeguards

All audits are conducted with:


3. Voluntary Telemetry

3.1 Telemetry Overview

Stella Ops provides an optional telemetry endpoint for users who wish to automate compliance reporting.

Key principles:

3.2 What Telemetry Collects (When Enabled)

MetricDescriptionPurpose
installation_idAnonymous installation identifierDeduplicate reports
environment_countNumber of active environmentsLicense compliance
scan_count_24hScans in rolling 24-hour periodLicense compliance
versionStella Ops versionCompatibility/support
timestampReport timestampTime-series analysis

3.3 What Telemetry Does NOT Collect

3.4 Enabling/Disabling Telemetry

To enable:

# In stella-ops.yaml
telemetry:
  enabled: true
  endpoint: https://telemetry.stella-ops.org/v1/report

To disable (default):

telemetry:
  enabled: false

Environment variable override:

STELLAOPS_TELEMETRY_ENABLED=false

3.5 Telemetry Data Handling


4. Self-Attestation

4.1 Overview

As an alternative to telemetry, licensees may provide annual self-attestation of compliance. This is the recommended approach for organizations with strict data governance requirements.

4.2 Attestation Process

  1. Download form: docs/legal/templates/self-attestation-form.md
  2. Complete attestation: Fill in required fields
  3. Submit: Email to compliance@stella-ops.org
  4. Confirmation: Receive acknowledgment within 10 business days

4.3 Attestation Frequency

4.4 False Attestation

Knowingly providing false attestation information may result in:


5. Compliance Verification Methods

5.1 Recommended: Built-in Dashboard

Stella Ops includes a compliance dashboard at /admin/compliance:

Compliance Status
─────────────────
License Type:     Community (Free Tier)
Environments:     2 of 3 (within limit)
Scans (24h):      456 of 999 (within limit)
Status:           COMPLIANT

This dashboard can be used to:

5.2 API-Based Verification

Compliance metrics are available via API:

curl -H "Authorization: Bearer $ADMIN_TOKEN" \
  https://your-instance/api/v1/admin/compliance/metrics

Response:

{
  "environment_count": 2,
  "environment_limit": 3,
  "scan_count_24h": 456,
  "scan_limit_24h": 999,
  "compliant": true,
  "timestamp": "2026-01-25T14:30:00Z"
}

5.3 Log-Based Verification

For organizations that prefer log analysis:

# Extract compliance metrics from logs
grep "compliance_check" /var/log/stellaops/audit.log | tail -1

6. Remediation

6.1 Exceeding Limits

If you discover you’ve exceeded free tier limits:

  1. Immediate: Usage may be throttled (see 30_QUOTA_ENFORCEMENT_FLOW1.md)
  2. Short-term: Reduce environments or scan volume to return to compliance
  3. Long-term: Obtain commercial license for ongoing needs

6.2 Grace Period

For good-faith limit exceedances:

6.3 Commercial License Transition

If you need to exceed free tier limits:


7. Privacy Commitments

stella-ops.org commits to the following privacy principles:

7.1 Data Minimization

We collect only the minimum data necessary for license compliance verification.

7.2 Purpose Limitation

Compliance data is used only for license verification, never for marketing or sold to third parties.

7.3 User Control

7.4 GDPR Compliance

For EU users:

7.5 Contact

For privacy-related inquiries:


8. Questions and Support

Compliance questions:

Technical questions about telemetry:

Commercial licensing:


See Also


Document maintained by: Legal + Privacy Office Last review: 2026-01-25