We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was trying to do a test here, but I saw that in the structure there is no call to part of the API other than activecalls.
https://host:5001/api/activecalls.
Would it be possible to get something from this url in 3cx_exporter?
Basically this is the structure.
package main
import "time"
type Call struct { ID int json:"Id" Caller string json:"Caller" Callee string json:"Callee" Status string json:"Status" LastChangeStatus string json:"LastChangeStatus" EstablishedAt string json:"EstablishedAt" }
json:"Id"
json:"Caller"
json:"Callee"
json:"Status"
json:"LastChangeStatus"
json:"EstablishedAt"
type ActiveCallsResponse struct { Now string json:"Now" List []Call json:"list" }
json:"Now"
json:"list"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was trying to do a test here, but I saw that in the structure there is no call to part of the API other than activecalls.
https://host:5001/api/activecalls.
Would it be possible to get something from this url in 3cx_exporter?
Basically this is the structure.
package main
import "time"
type Call struct {
ID int
json:"Id"
Caller string
json:"Caller"
Callee string
json:"Callee"
Status string
json:"Status"
LastChangeStatus string
json:"LastChangeStatus"
EstablishedAt string
json:"EstablishedAt"
}
type ActiveCallsResponse struct {
Now string
json:"Now"
List []Call
json:"list"
}
The text was updated successfully, but these errors were encountered: