File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
packages/clients/src/api/cockpit/v1beta1 Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,9 @@ const unmarshalPlan = (data: unknown) => {
163
163
retentionLogsInterval : data . retention_logs_interval ,
164
164
retentionMetricsInterval : data . retention_metrics_interval ,
165
165
retentionPrice : data . retention_price ,
166
+ retentionTracesInterval : data . retention_traces_interval ,
166
167
sampleIngestionPrice : data . sample_ingestion_price ,
168
+ tracesIngestionPrice : data . traces_ingestion_price ,
167
169
} as Plan
168
170
}
169
171
Original file line number Diff line number Diff line change @@ -193,14 +193,18 @@ export interface Plan {
193
193
id : string
194
194
/** Name of a given pricing plan. */
195
195
name : PlanName
196
- /** Retention for metrics. */
196
+ /** Interval of time during which Scaleway's Cockpit keeps your metrics. */
197
197
retentionMetricsInterval ?: string
198
- /** Retention for logs. */
198
+ /** Interval of time during which Scaleway's Cockpit keeps your logs. */
199
199
retentionLogsInterval ?: string
200
- /** Ingestion price for 1 million samples in cents. */
200
+ /** Interval of time during which Scaleway's Cockpit keeps your traces. */
201
+ retentionTracesInterval ?: string
202
+ /** Ingestion price in cents for 1 million samples. */
201
203
sampleIngestionPrice : number
202
- /** Ingestion price for 1 GB of logs in cents . */
204
+ /** Ingestion price in cents for 1 GB of logs. */
203
205
logsIngestionPrice : number
206
+ /** Ingestion price in cents for 1 GB of traces. */
207
+ tracesIngestionPrice : number
204
208
/** Retention price in euros per month. */
205
209
retentionPrice : number
206
210
}
You can’t perform that action at this time.
0 commit comments