pull/3/head
DmitriyA 2025-03-06 03:49:35 -05:00
commit 0afbcd7467
5 changed files with 17 additions and 63 deletions

1
.env Normal file
View File

@ -0,0 +1 @@
#PROMETHEUS_API=http://192.168.2.37:9090/api/v1

View File

@ -8,4 +8,6 @@ RUN npm install
COPY . .
ENV NODE_ENV=development
CMD ["npm", "run", "start:dev"]

3
Jenkinsfile vendored
View File

@ -41,7 +41,6 @@ pipeline {
always {
script {
echo "Cleaning up workspace..."
sh "rm -rf ${env.WORKSPACE}/package/ || true"
sh "rm -rf ${env.WORKSPACE}/rc/ || true"
}
}
@ -56,7 +55,7 @@ pipeline {
-u "${GITEA_USER}:${GITEA_PASS}" \
-H "Content-Type: application/json" \
-d '{"do":"merge"}' \
http://git.entcor/api/v1/repos/DmitriyA/trust-module-backend/pulls/${prId}/merge
http://git.entcor/api/v1/repos/deployer3000/trust-module-backend/pulls/${prId}/merge
"""
echo "PR ${prId} merged successfully into master!"
}

View File

@ -74,4 +74,4 @@
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}
}

View File

@ -8,15 +8,10 @@ import { PrometheusMetric } from './prometheus-metric.interface';
export class PrometheusService {
private readonly prometheusUrl: string;
constructor(
private readonly httpService: HttpService,
private readonly configService: ConfigService
) {
this.prometheusUrl = this.configService.get<string>('PROMETHEUS_API', 'http://localhost:9090');
console.log('Prometheus API URL:', this.prometheusUrl);
}
constructor(private readonly httpService: HttpService) { }
//Получаем тип метрики
// Получаем тип метрики
async fetchMetricType(metric: string): Promise<string | null> {
try {
const response = await lastValueFrom(
@ -33,24 +28,8 @@ export class PrometheusService {
}
}
// Получаем описание метрики
async fetchMetricDescription(metric: string): Promise<string | undefined> {
try {
const response = await lastValueFrom(
this.httpService.get(`${this.prometheusUrl}/metadata`, {
params: { metric },
})
);
//Данные конкретной метрики, включая ее тип
const metadata = response.data.data[metric];
return metadata?.length ? metadata[0].help : undefined;
} catch (error) {
console.error(`Ошибка при получении описания метрики ${metric}:`, error);
return undefined;
}
}
// Получаем данные метрики (текущие значения)
async fetchMetrics(metric: string): Promise<PrometheusMetric[]> {
const response = await lastValueFrom(
this.httpService.get(`${this.prometheusUrl}/query`, {
@ -58,46 +37,18 @@ export class PrometheusService {
})
);
const metricType = await this.fetchMetricType(metric);
const metricDescription = await this.fetchMetricDescription(metric);
const metricType = await this.fetchMetricType(metric); // Получаем тип
return response.data.data.result.map((entry): PrometheusMetric => ({
...entry.metric,
timestamp: entry.value[0] * 1000,
value: parseFloat(entry.value[1]),
type: metricType || 'unknown',
description: metricDescription, // Добавляем описание
timestamp: entry.value[0] * 1000, // Преобразуем в миллисекунды
value: parseFloat(entry.value[1]), // Преобразуем в число
type: metricType || 'unknown', // Добавляем тип метрики
}));
}
// Получаем данные метрики за интервал
async fetchMetricsRange(metric: string, start: number, end: number, step: number): Promise<PrometheusMetric[]> {
const response = await lastValueFrom(
this.httpService.get(`${this.prometheusUrl}/query_range`, {
params: {
query: metric,
start,
end,
step,
},
})
);
//Получаем данные всех метрик
const metricType = await this.fetchMetricType(metric);
const metricDescription = await this.fetchMetricDescription(metric);
return response.data.data.result.flatMap((entry) =>
entry.values.map((value): PrometheusMetric => ({
...entry.metric,
timestamp: value[0] * 1000,
value: parseFloat(value[1]),
type: metricType || 'unknown',
description: metricDescription, // Добавляем описание
}))
);
}
// Получаем список всех метрик
async fetchAllMetrics(): Promise<string[]> {
const response = await lastValueFrom(
this.httpService.get(`${this.prometheusUrl}/label/__name__/values`)
@ -105,7 +56,8 @@ export class PrometheusService {
return response.data.data;
}
// Получаем все метрики с их значениями
// Получаем список всех метрик
async fetchAllMetricsWithValues(): Promise<any[]> {
const metricNames = await this.fetchAllMetrics();
const promises = metricNames.map(async (metric) => {
@ -114,4 +66,4 @@ export class PrometheusService {
});
return Promise.all(promises);
}
}
}