mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-26 12:02:19 +00:00
* feat: query_range migration from v3/v4 -> v5 * feat: cleanup files * feat: cleanup code * feat: metric payload improvements * feat: metric payload improvements * feat: data retention and qb v2 for dashboard cleanup * feat: corrected datasource change daata updatation in qb v2 * feat: fix value panel plotting with new query v5 * feat: alert migration * feat: fixed aggregation css * feat: explorer pages migration * feat: trace and logs explorer fixes
233 lines
5.8 KiB
TypeScript
233 lines
5.8 KiB
TypeScript
/* eslint-disable sonarjs/cognitive-complexity */
|
|
/* eslint-disable no-param-reassign */
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
import getLocalStorageApi from 'api/browser/localstorage/get';
|
|
import loginApi from 'api/v1/login/login';
|
|
import afterLogin from 'AppRoutes/utils';
|
|
import axios, {
|
|
AxiosError,
|
|
AxiosResponse,
|
|
InternalAxiosRequestConfig,
|
|
} from 'axios';
|
|
import { ENVIRONMENT } from 'constants/env';
|
|
import { Events } from 'constants/events';
|
|
import { LOCALSTORAGE } from 'constants/localStorage';
|
|
import { eventEmitter } from 'utils/getEventEmitter';
|
|
|
|
import apiV1, {
|
|
apiAlertManager,
|
|
apiV2,
|
|
apiV3,
|
|
apiV4,
|
|
apiV5,
|
|
gatewayApiV1,
|
|
gatewayApiV2,
|
|
} from './apiV1';
|
|
import { Logout } from './utils';
|
|
|
|
const RESPONSE_TIMEOUT_THRESHOLD = 5000; // 5 seconds
|
|
|
|
const interceptorsResponse = (
|
|
value: AxiosResponse<any>,
|
|
): Promise<AxiosResponse<any>> => {
|
|
if ((value.config as any)?.metadata) {
|
|
const duration =
|
|
new Date().getTime() - (value.config as any).metadata.startTime;
|
|
|
|
if (duration > RESPONSE_TIMEOUT_THRESHOLD && value.config.url !== '/event') {
|
|
eventEmitter.emit(Events.SLOW_API_WARNING, true, {
|
|
duration,
|
|
url: value.config.url,
|
|
threshold: RESPONSE_TIMEOUT_THRESHOLD,
|
|
});
|
|
|
|
console.warn(
|
|
`[API Warning] Request to ${value.config.url} took ${duration}ms`,
|
|
);
|
|
}
|
|
}
|
|
|
|
return Promise.resolve(value);
|
|
};
|
|
|
|
const interceptorsRequestResponse = (
|
|
value: InternalAxiosRequestConfig,
|
|
): InternalAxiosRequestConfig => {
|
|
// Attach metadata safely (not sent with the request)
|
|
Object.defineProperty(value, 'metadata', {
|
|
value: { startTime: new Date().getTime() },
|
|
enumerable: false, // Prevents it from being included in the request
|
|
});
|
|
|
|
const token = getLocalStorageApi(LOCALSTORAGE.AUTH_TOKEN) || '';
|
|
|
|
if (value && value.headers) {
|
|
value.headers.Authorization = token ? `Bearer ${token}` : '';
|
|
}
|
|
|
|
return value;
|
|
};
|
|
|
|
const interceptorRejected = async (
|
|
value: AxiosResponse<any>,
|
|
): Promise<AxiosResponse<any>> => {
|
|
try {
|
|
if (axios.isAxiosError(value) && value.response) {
|
|
const { response } = value;
|
|
// reject the refresh token error
|
|
if (response.status === 401 && response.config.url !== '/login') {
|
|
try {
|
|
const response = await loginApi({
|
|
refreshToken: getLocalStorageApi(LOCALSTORAGE.REFRESH_AUTH_TOKEN) || '',
|
|
});
|
|
|
|
afterLogin(
|
|
response.data.userId,
|
|
response.data.accessJwt,
|
|
response.data.refreshJwt,
|
|
true,
|
|
);
|
|
|
|
try {
|
|
const reResponse = await axios(
|
|
`${value.config.baseURL}${value.config.url?.substring(1)}`,
|
|
{
|
|
method: value.config.method,
|
|
headers: {
|
|
...value.config.headers,
|
|
Authorization: `Bearer ${response.data.accessJwt}`,
|
|
},
|
|
data: {
|
|
...JSON.parse(value.config.data || '{}'),
|
|
},
|
|
},
|
|
);
|
|
|
|
return await Promise.resolve(reResponse);
|
|
} catch (error) {
|
|
if ((error as AxiosError)?.response?.status === 401) {
|
|
Logout();
|
|
}
|
|
}
|
|
} catch (error) {
|
|
Logout();
|
|
}
|
|
}
|
|
// when refresh token is expired
|
|
if (response.status === 401 && response.config.url === '/login') {
|
|
Logout();
|
|
}
|
|
}
|
|
return await Promise.reject(value);
|
|
} catch (error) {
|
|
return await Promise.reject(error);
|
|
}
|
|
};
|
|
|
|
const interceptorRejectedBase = async (
|
|
value: AxiosResponse<any>,
|
|
): Promise<AxiosResponse<any>> => Promise.reject(value);
|
|
|
|
const instance = axios.create({
|
|
baseURL: `${ENVIRONMENT.baseURL}${apiV1}`,
|
|
});
|
|
|
|
instance.interceptors.request.use(interceptorsRequestResponse);
|
|
instance.interceptors.response.use(interceptorsResponse, interceptorRejected);
|
|
|
|
export const AxiosAlertManagerInstance = axios.create({
|
|
baseURL: `${ENVIRONMENT.baseURL}${apiAlertManager}`,
|
|
});
|
|
|
|
export const ApiV2Instance = axios.create({
|
|
baseURL: `${ENVIRONMENT.baseURL}${apiV2}`,
|
|
});
|
|
ApiV2Instance.interceptors.response.use(
|
|
interceptorsResponse,
|
|
interceptorRejected,
|
|
);
|
|
ApiV2Instance.interceptors.request.use(interceptorsRequestResponse);
|
|
|
|
// axios V3
|
|
export const ApiV3Instance = axios.create({
|
|
baseURL: `${ENVIRONMENT.baseURL}${apiV3}`,
|
|
});
|
|
|
|
ApiV3Instance.interceptors.response.use(
|
|
interceptorsResponse,
|
|
interceptorRejected,
|
|
);
|
|
ApiV3Instance.interceptors.request.use(interceptorsRequestResponse);
|
|
//
|
|
|
|
// axios V4
|
|
export const ApiV4Instance = axios.create({
|
|
baseURL: `${ENVIRONMENT.baseURL}${apiV4}`,
|
|
});
|
|
|
|
ApiV4Instance.interceptors.response.use(
|
|
interceptorsResponse,
|
|
interceptorRejected,
|
|
);
|
|
ApiV4Instance.interceptors.request.use(interceptorsRequestResponse);
|
|
//
|
|
|
|
// axios V5
|
|
export const ApiV5Instance = axios.create({
|
|
baseURL: `${ENVIRONMENT.baseURL}${apiV5}`,
|
|
});
|
|
|
|
ApiV5Instance.interceptors.response.use(
|
|
interceptorsResponse,
|
|
interceptorRejected,
|
|
);
|
|
ApiV5Instance.interceptors.request.use(interceptorsRequestResponse);
|
|
//
|
|
|
|
// axios Base
|
|
export const ApiBaseInstance = axios.create({
|
|
baseURL: `${ENVIRONMENT.baseURL}${apiV1}`,
|
|
});
|
|
|
|
ApiBaseInstance.interceptors.response.use(
|
|
interceptorsResponse,
|
|
interceptorRejectedBase,
|
|
);
|
|
ApiBaseInstance.interceptors.request.use(interceptorsRequestResponse);
|
|
//
|
|
|
|
// gateway Api V1
|
|
export const GatewayApiV1Instance = axios.create({
|
|
baseURL: `${ENVIRONMENT.baseURL}${gatewayApiV1}`,
|
|
});
|
|
|
|
GatewayApiV1Instance.interceptors.response.use(
|
|
interceptorsResponse,
|
|
interceptorRejected,
|
|
);
|
|
|
|
GatewayApiV1Instance.interceptors.request.use(interceptorsRequestResponse);
|
|
//
|
|
|
|
// gateway Api V2
|
|
export const GatewayApiV2Instance = axios.create({
|
|
baseURL: `${ENVIRONMENT.baseURL}${gatewayApiV2}`,
|
|
});
|
|
|
|
GatewayApiV2Instance.interceptors.response.use(
|
|
interceptorsResponse,
|
|
interceptorRejected,
|
|
);
|
|
|
|
GatewayApiV2Instance.interceptors.request.use(interceptorsRequestResponse);
|
|
//
|
|
|
|
AxiosAlertManagerInstance.interceptors.response.use(
|
|
interceptorsResponse,
|
|
interceptorRejected,
|
|
);
|
|
AxiosAlertManagerInstance.interceptors.request.use(interceptorsRequestResponse);
|
|
|
|
export { apiV1 };
|
|
export default instance;
|