Skip to content

Commit

Permalink
new event types
Browse files Browse the repository at this point in the history
  • Loading branch information
gibsondan committed Aug 15, 2024
1 parent 47e40a1 commit 41c0a54
Show file tree
Hide file tree
Showing 19 changed files with 465 additions and 181 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

20 changes: 17 additions & 3 deletions js_modules/dagster-ui/packages/ui-core/src/graphql/schema.graphql

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

145 changes: 99 additions & 46 deletions js_modules/dagster-ui/packages/ui-core/src/graphql/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ export const LogsRowStructuredContent = ({node, metadata}: IStructuredContentPro
/>
);
case 'AssetMaterializationPlannedEvent':
case 'AssetMaterializationFailureEvent':
case 'PlannedAssetMaterializationFailureEvent':
case 'PlannedAssetMaterializationSkippedEvent':
return <DefaultContent eventType={eventType} message={node.message} />;
case 'ObjectStoreOperationEvent':
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export function filterLogs(logs: LogsProviderLogs, filter: LogFilter, filterStep
if (
node.__typename === 'AssetMaterializationPlannedEvent' ||
node.__typename === 'AssetCheckEvaluationPlannedEvent' ||
node.__typename === 'AssetMaterializationFailureEvent'
node.__typename === 'PlannedAssetMaterializationFailureEvent' ||
node.__typename === 'PlannedAssetMaterializationSkippedEvent'
) {
return false;
}
Expand Down
Loading

0 comments on commit 41c0a54

Please sign in to comment.