Skip to content

Commit

Permalink
Remove FluentIngestAPI from Ingestor routes
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed Nov 21, 2024
1 parent 9244e49 commit 93154aa
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Ingestor/Index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import AliveAPI from "./API/Alive";
import FluentIngestAPI from "../FluentIngest/API/FluentIngest";
import IncomingRequestAPI from "./API/IncomingRequest";
import MonitorAPI from "./API/Monitor";
import OTelIngestAPI from "./API/OTelIngest";
Expand All @@ -22,13 +20,11 @@ const app: ExpressApplication = Express.getExpressApp();

const APP_NAME: string = "ingestor";

app.use([`/${APP_NAME}`, "/"], AliveAPI);
app.use([`/${APP_NAME}`, "/"], RegisterAPI);
app.use([`/${APP_NAME}`, "/"], MonitorAPI);
app.use([`/${APP_NAME}`, "/"], Ingestor);
app.use([`/${APP_NAME}`, "/"], IncomingRequestAPI);
app.use([`/${APP_NAME}`, "/"], OTelIngestAPI);
app.use([`/${APP_NAME}`, "/"], FluentIngestAPI);
app.use([`/${APP_NAME}`, "/"], ServerMonitorAPI);

const init: PromiseVoidFunction = async (): Promise<void> => {
Expand Down

0 comments on commit 93154aa

Please sign in to comment.