Adding mechanism to disable automation logging in self host.
This commit is contained in:
parent
03165faf0f
commit
a7b781468e
|
@ -13,6 +13,7 @@ import {
|
||||||
} from "../../db/utils"
|
} from "../../db/utils"
|
||||||
import { createLogByAutomationView } from "../../db/views/staticViews"
|
import { createLogByAutomationView } from "../../db/views/staticViews"
|
||||||
import { Automation } from "../../definitions/common"
|
import { Automation } from "../../definitions/common"
|
||||||
|
import * as env from "../../environment"
|
||||||
|
|
||||||
const PAGE_SIZE = 9
|
const PAGE_SIZE = 9
|
||||||
const EARLIEST_DATE = new Date(0).toISOString()
|
const EARLIEST_DATE = new Date(0).toISOString()
|
||||||
|
@ -134,6 +135,10 @@ export async function storeLog(
|
||||||
automation: Automation,
|
automation: Automation,
|
||||||
results: AutomationResults
|
results: AutomationResults
|
||||||
) {
|
) {
|
||||||
|
// can disable this if un-needed in self host
|
||||||
|
if (env.DISABLE_AUTOMATION_LOGS) {
|
||||||
|
return
|
||||||
|
}
|
||||||
const db = getAppDB()
|
const db = getAppDB()
|
||||||
const automationId = automation._id
|
const automationId = automation._id
|
||||||
const name = automation.name
|
const name = automation.name
|
||||||
|
|
|
@ -76,6 +76,7 @@ module.exports = {
|
||||||
ALLOW_DEV_AUTOMATIONS: process.env.ALLOW_DEV_AUTOMATIONS,
|
ALLOW_DEV_AUTOMATIONS: process.env.ALLOW_DEV_AUTOMATIONS,
|
||||||
DISABLE_THREADING: process.env.DISABLE_THREADING,
|
DISABLE_THREADING: process.env.DISABLE_THREADING,
|
||||||
DISABLE_DEVELOPER_LICENSE: process.env.DISABLE_DEVELOPER_LICENSE,
|
DISABLE_DEVELOPER_LICENSE: process.env.DISABLE_DEVELOPER_LICENSE,
|
||||||
|
DISABLE_AUTOMATION_LOGS: process.env.DISABLE_AUTOMATION_LOGS,
|
||||||
MULTI_TENANCY: process.env.MULTI_TENANCY,
|
MULTI_TENANCY: process.env.MULTI_TENANCY,
|
||||||
ENABLE_ANALYTICS: process.env.ENABLE_ANALYTICS,
|
ENABLE_ANALYTICS: process.env.ENABLE_ANALYTICS,
|
||||||
SELF_HOSTED: process.env.SELF_HOSTED,
|
SELF_HOSTED: process.env.SELF_HOSTED,
|
||||||
|
|
Loading…
Reference in New Issue