chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
import { Alert, Link } from "@mui/material";
|
||||
import React, { useEffect, useState } from "react";
|
||||
import { getUsageStatsEnabled } from "../service/global";
|
||||
|
||||
export const UsageStatsAlert = () => {
|
||||
const [usageStatsPromptEnabled, setUsageStatsPromptEnabled] = useState(false);
|
||||
const [usageStatsEnabled, setUsageStatsEnabled] = useState(false);
|
||||
useEffect(() => {
|
||||
getUsageStatsEnabled().then(({ data }) => {
|
||||
setUsageStatsPromptEnabled(data.usageStatsPromptEnabled);
|
||||
setUsageStatsEnabled(data.usageStatsEnabled);
|
||||
});
|
||||
}, []);
|
||||
|
||||
return usageStatsPromptEnabled ? (
|
||||
<Alert style={{ marginTop: 30 }} severity="info">
|
||||
{usageStatsEnabled ? (
|
||||
<span>
|
||||
Usage stats collection is enabled. To disable this, add
|
||||
`--disable-usage-stats` to the command that starts the cluster, or run
|
||||
the following command: `ray disable-usage-stats` before starting the
|
||||
cluster. See{" "}
|
||||
<Link
|
||||
href="https://docs.ray.io/en/master/cluster/usage-stats.html"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
https://docs.ray.io/en/master/cluster/usage-stats.html
|
||||
</Link>{" "}
|
||||
for more details.
|
||||
</span>
|
||||
) : (
|
||||
<span>Usage stats collection is disabled.</span>
|
||||
)}
|
||||
</Alert>
|
||||
) : null;
|
||||
};
|
||||
Reference in New Issue
Block a user