Skip to main content
GreenSlope

Security and data handling

This page is for engineers implementing GreenSlope. For evaluator-facing company posture, see Security & trust.

Data residency

Customer telemetry and account data are processed in a single EU region, currently europe-west1 (Belgium). There is no US fallback for launch. If a different region blocks your evaluation, email

support [at] greenslope [dot] io.

Retention

GreenSlope keeps launch retention deliberately short.

Data kindRetention
Hot spans24 hours on Solo, 48 hours on Starter
Warm span archive30 days
Change and deploy events90 days
Alerts and incident activity180 days
Administrative audit events365 days

After retention, data is deleted. Backups follow the same practical retention boundary.

PII handling

Redact sensitive attributes before export using an OpenTelemetry span processor or your existing telemetry collector.

import type { ReadableSpan, SpanProcessor } from "@opentelemetry/sdk-trace-base"
 
class RedactingProcessor implements SpanProcessor {
  constructor(private inner: SpanProcessor) {}
  onStart() {}
  onEnd(span: ReadableSpan) {
    for (const key of Object.keys(span.attributes)) {
      if (key.endsWith(".email") || key.endsWith(".ip")) {
        ;(span.attributes as Record<string, unknown>)[key] = "[redacted]"
      }
    }
    this.inner.onEnd(span)
  }
  forceFlush() {
    return this.inner.forceFlush()
  }
  shutdown() {
    return this.inner.shutdown()
  }
}

Encryption

Network allowlist

Services that emit telemetry to GreenSlope must be able to reach:

HostPurpose
ingest.greenslope.ioOTLP trace ingestion over HTTPS/gRPC
api.greenslope.ioGreenSlope API
app.greenslope.ioDashboard

The GitHub and Slack integrations make outbound calls from GreenSlope to GitHub and Slack. No inbound access to your network is required.

Compliance boundaries

Sub-processors

The authoritative list lives at /legal/subprocessors. Changes are communicated by email to affected customers before they take effect.

Security disclosures

If you believe you've found a vulnerability, email

security [at] greenslope [dot] io. We respond within two UK working days.

Related