Rename teams and queries to fleets and reports in UI (#39572)

This commit is contained in:
Scott Gress
2026-02-17 15:19:33 -06:00
committed by GitHub
parent 0f9c05577b
commit cd18ced3e9
194 changed files with 870 additions and 856 deletions
@@ -62,7 +62,7 @@ const LogDestinationIndicator = ({
case "filesystem":
return (
<>
Each time a query runs, the data is sent to <br />
Each time a report runs, the data is sent to <br />
{filesystemDestination} <br />
on the server&apos;s filesystem.
</>
@@ -70,54 +70,54 @@ const LogDestinationIndicator = ({
case "firehose":
return (
<>
Each time a query runs, the data is sent to <br />
Each time a report runs, the data is sent to <br />
Amazon Kinesis Data Firehose.
</>
);
case "kinesis":
return (
<>
Each time a query runs, the data is sent to <br />
Each time a report runs, the data is sent to <br />
Amazon Kinesis Data Streams.
</>
);
case "lambda":
return (
<>
Each time a query runs, the data <br />
Each time a report runs, the data <br />
is sent to AWS Lambda.
</>
);
case "pubsub":
return (
<>
Each time a query runs, the data is <br /> sent to Google Cloud Pub
Each time a report runs, the data is <br /> sent to Google Cloud Pub
/ Sub.
</>
);
case "kafka":
return (
<>
Each time a query runs, the data <br /> is sent to Apache Kafka.
Each time a report runs, the data <br /> is sent to Apache Kafka.
</>
);
case "nats":
return (
<>
Each time a query runs, the data <br /> is sent to NATS.
Each time a report runs, the data <br /> is sent to NATS.
</>
);
case "stdout":
return (
<>
Each time a query runs, the data is sent to <br />
Each time a report runs, the data is sent to <br />
standard output(stdout) on the Fleet server.
</>
);
case "webhook":
return (
<>
Each time a query runs, the data is sent via webhook to:{" "}
Each time a report runs, the data is sent via webhook to:{" "}
{webhookDestination}.
</>
);