action maif_global_live_stats { label: "Get global otoroshi stats" description: "Get global otoroshi stats" provider: maif method: GET path: "/api/live" encoding: json output: { type: "object" description: "Live stats for a service or globally" required: ["calls", "concurrentHandledRequests", "dataIn", "dataInRate", "dataOut", "dataOutRate", "duration", "overhead", "rate"] properties: { calls: { type: "integer" format: "int64" description: "Number of calls on the specified service or globally" } concurrentHandledRequests: { type: "integer" format: "int64" description: "The number of concurrent request currently" } dataIn: { type: "integer" format: "int64" description: "The amount of data sent to the specified service or Otoroshi globally" } dataInRate: { type: "number" format: "double" description: "The rate of data sent to the specified service or Otoroshi globally" } dataOut: { type: "integer" format: "int64" description: "The amount of data sent from the specified service or Otoroshi globally" } dataOutRate: { type: "number" format: "double" description: "The rate of data sent from the specified service or Otoroshi globally" } duration: { type: "number" format: "double" description: "The average duration for a call" } overhead: { type: "number" format: "double" description: "The average overhead time induced by Otoroshi for each call" } rate: { type: "number" format: "double" description: "The rate of data sent from and to the specified service or Otoroshi globally" } } } }