1/* 2 * This file is part of CoCalc: Copyright © 2022 Sagemath, Inc. 3 * License: MS-RSL – see LICENSE.md for details 4 */ 5 6// static values for monitoring and project information 7 8import { uuid } from "@cocalc/util/misc"; 9 10// uniquely identify this instance of the local hub 11export const session_id = uuid(); 12 13// record when this instance started 14export const start_ts = Date.now(); 15 16