mirror of
https://github.com/SigNoz/signoz.git
synced 2026-03-15 01:22:14 +00:00
## Summary - Remove the legacy `/api/gateway` reverse proxy from `ee/query-service/integrations/gateway/` — it has been superseded by the new provider-pattern-based `pkg/gateway/` package (serving `/api/v2/gateway/ingestion_keys`) - Delete dead frontend code: manual IngestionKeys API clients and hooks that targeted the old gateway routes - Clean up `GatewayApiV1`/`GatewayApiV2` axios instances and route constants from the frontend API layer ## What's retained - `--gateway-url` flag and `GatewayUrl` field in `APIHandlerOptions` (still used by `cloudIntegrations.go`) - `pkg/gateway/` package (the new gateway provider) - `frontend/src/api/generated/services/gateway/` (generated client for the new endpoints)
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
const apiV1 = '/api/v1/';
|
|
|
|
export const apiV2 = '/api/v2/';
|
|
export const apiV3 = '/api/v3/';
|
|
export const apiV4 = '/api/v4/';
|
|
export const apiV5 = '/api/v5/';
|
|
export const apiAlertManager = '/api/alertmanager/';
|
|
|
|
export default apiV1;
|