tembo_api_client/models/
app_metrics.rs

1/*
2 * Tembo Cloud
3 *
4 * Platform API for Tembo Cloud             </br>             </br>             To find a Tembo Data API, please find it here:             </br>             </br>             [AWS US East 1](https://api.data-1.use1.tembo.io/swagger-ui/)
5 *
6 * The version of the OpenAPI document: v1.0.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct AppMetrics {
16    /// path to scrape metrics
17    #[serde(rename = "path")]
18    pub path: String,
19    /// port must be also exposed in one of AppService.routing[]
20    #[serde(rename = "port")]
21    pub port: i32,
22}
23
24impl AppMetrics {
25    pub fn new(path: String, port: i32) -> AppMetrics {
26        AppMetrics { path, port }
27    }
28}