UNPKG

telex-server-monitor-sdk

Version:

SDK for Telex Server Monitor - A lightweight agent that collects and reports server CPU metrics to the Telex monitoring platform

10 lines (9 loc) 314 B
import axios from "axios"; import { AppConstants, getStoreData } from "../index.js"; export const TelexAxiosInstance = axios.create({ baseURL: AppConstants.Telex.BaseUrl, headers: { "Content-Type": "application/json", Authorization: `Bearer ${getStoreData()?.authToken?.value}`, }, });