gpxe 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# gpxe
|
|
2
|
+
|
|
3
|
+
**Gridpoint Analytics CLI (gpxe)** — Precision telemetry for the terminal era.
|
|
4
|
+
|
|
5
|
+
`gpxe` is a high-performance, developer-first CLI designed for observing Cloudflare-based stacks. It emphasizes speed, zero-latency streaming, and automation-friendly JSON output.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g gpxe
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Private Beta Handshake
|
|
14
|
+
|
|
15
|
+
Gridpoint Analytics is currently in private beta. You can reserve your spot directly from your terminal:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx gpxe reserve
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Take the resulting token and enter it at [gridpointanalytics.com](https://gridpointanalytics.com) to claim your spot.
|
|
22
|
+
|
|
23
|
+
## Core Commands
|
|
24
|
+
|
|
25
|
+
- `gpxe status`: Check system health and active incidents.
|
|
26
|
+
- `gpxe metrics --watch`: Stream live telemetry with zero latency.
|
|
27
|
+
- `gpxe incidents explain <id>`: Get intelligent root-cause analysis for specific incidents.
|
|
28
|
+
- `gpxe deploy rollback`: Instantly revert to the last known healthy state.
|
|
29
|
+
- `gpxe config`: Manage your workspace and engine endpoints.
|
|
30
|
+
|
|
31
|
+
## Why gpxe?
|
|
32
|
+
|
|
33
|
+
- **Zero Touch**: No code changes required. Maps your Workers, D1, and Queues automatically.
|
|
34
|
+
- **Privacy First**: Observes systems, not people. Zero PII storage.
|
|
35
|
+
- **Automation Ready**: Every command supports `--json` for CI/CD gating and scripting.
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
© 2025 Gridpoint Analytics. All rights reserved.
|