@microfleet/core
Version:
Abstract microservice core
28 lines • 674 B
TypeScript
/**
* Default plugins that each service would likely require
* It's advised to revamp this per your project
*/
export declare const plugins: string[];
/**
* Contains function definitions for service-specific hooks
*/
export declare const hooks: {};
/**
* Enables graceful handling of shutdown for supported plugins
*/
export declare const sigterm = true;
export declare const prometheus: {
config: {
port: number;
path: string;
};
};
/**
* Health check retry options
* https://www.npmjs.com/package/bluebird-retry
*/
export declare const healthChecks: {
interval: number;
max_tries: number;
};
//# sourceMappingURL=defaults.d.ts.map