Skip to content

Commit

Permalink
feat: double monitor bundle size to 1500Kb (#882)
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshshanmugam committed Jan 5, 2024
1 parent b568a9d commit 69304de
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/push/bundler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ import archiver from 'archiver';
import { commonOptions } from '../core/transform';
import { SyntheticsBundlePlugin } from './plugin';

const SIZE_LIMIT_KB = 800;
// 1500KB Max Gzipped limit for bundled code to be pushed as Kibana project monitors.
const SIZE_LIMIT_KB = 200;

function relativeToCwd(entry: string) {
return path.relative(process.cwd(), entry);
Expand Down Expand Up @@ -100,7 +101,7 @@ export class Bundler {
const sizeKb = size / 1024;
if (sizeKb > SIZE_LIMIT_KB) {
throw new Error(
`You have monitors whose size exceeds the ${SIZE_LIMIT_KB}KB limit.`
`Bundled monitor code exceeds the recommended ${SIZE_LIMIT_KB}KB limit. Please check your dependencies and try again.`
);
}
}
Expand Down

0 comments on commit 69304de

Please sign in to comment.