File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
x-pack/plugin/transform/src/main/java/org/elasticsearch/xpack/transform Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 123
123
import java .util .function .UnaryOperator ;
124
124
125
125
import static java .util .Collections .emptyList ;
126
+ import static org .elasticsearch .xpack .core .transform .transforms .persistence .TransformInternalIndexConstants .AUDIT_INDEX_PATTERN ;
126
127
127
128
public class Transform extends Plugin implements SystemIndexPlugin , PersistentTaskPlugin {
128
129
@@ -397,6 +398,10 @@ public Collection<SystemIndexDescriptor> getSystemIndexDescriptors(Settings sett
397
398
}
398
399
}
399
400
401
+ @ Override public Collection <String > getAssociatedIndexPatterns () {
402
+ return org .elasticsearch .common .collect .List .of (AUDIT_INDEX_PATTERN );
403
+ }
404
+
400
405
@ Override
401
406
public String getFeatureName () {
402
407
return "transform" ;
You can’t perform that action at this time.
0 commit comments