Skip to content

Commit

Permalink
Adds tags to TODOs for easy searching later
Browse files Browse the repository at this point in the history
  • Loading branch information
ogupte committed Jun 24, 2020
1 parent 9c8e56b commit 2af257d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function Contents({
</EuiTitle>
<EuiHorizontalRule margin="xs" />
</FlexColumnItem>
{/* //TODO - add service health stats here:
{/* //TODO [APM ML] add service health stats here:
isService && (
<FlexColumnItem>
<ServiceHealth serviceNodeData={selectedNodeData} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export function TransactionOverview() {
<EuiSpacer size="s" />

<TransactionCharts
// TODO: set hasMLJob prop when ML integration is reintroduced:
// TODO [APM ML] set hasMLJob prop when ML integration is reintroduced:
hasMLJob={false}
charts={transactionCharts}
location={location}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export class TransactionCharts extends Component<TransactionChartProps> {
return null;
}

const linkedJobId = ''; // TODO link to ML job id for the selected environment
const linkedJobId = ''; // TODO [APM ML] link to ML job id for the selected environment

const hasKuery = !isEmpty(kuery);
const icon = hasKuery ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ export async function getAnomalySeries({
return;
}

// TODO - return a series of anomaly scores, upper & lower bounds for the given timeSeriesDates
// TODO [APM ML] return a series of anomaly scores, upper & lower bounds for the given timeSeriesDates
return;
}

0 comments on commit 2af257d

Please sign in to comment.