Skip to content

Commit

Permalink
feat: re-enable integrations next (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
theSuess authored May 3, 2024
1 parent 0154ac7 commit 9176e37
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/components/Converter/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ import { useModelContext } from "../../state";
import { Controller, FormProvider, useForm } from "react-hook-form";
import { useMemo, useState } from "react";

type InputType = "otelcol" | "promtail" | "static" | "prometheus";
type InputType =
| "otelcol"
| "promtail"
| "static"
| "prometheus"
| "static integrations-next";

interface Diagnostic {
Severity: number;
Expand Down Expand Up @@ -116,6 +121,10 @@ const Converter = ({ dismiss }: { dismiss: () => void }) => {
label: "Grafana Agent Static",
value: "static",
},
{
label: "Grafana Agent Static Integrations Next",
value: "static integrations-next",
},
{
label: "OpenTelemetry Collector",
value: "otelcol",
Expand Down

0 comments on commit 9176e37

Please sign in to comment.