teslamotors / fleet-telemetry

Apache License 2.0
625 stars 66 forks source link

Total Transfer Rate Too High Question #165

Closed 0xdev22 closed 2 months ago

0xdev22 commented 2 months ago

I keep hitting this error, Its fixable by increasing the interval of some fields of course. But it could be helpful to know what the total allowed interval is. Has anybody been able to figure out what the total allowed interval is or how to determine it, any answers or resource will go a long way. Thanks

agbpatro commented 2 months ago

can you paste a sample request for the fields? Effectively you should not stream more than 10 fields per minute

0xdev22 commented 2 months ago

@agbpatro thank you, here is a sample request

{
    "ChargeState": {
        "interval_seconds": 60
    },
    "Location": {
        "interval_seconds": 60
    },
    "Odometer": {
        "interval_seconds": 60
    },
    "EstBatteryRange": {
        "interval_seconds": 60
    },
    "BatteryLevel": {
        "interval_seconds": 60
    },
    "ChargeLimitSOC": {
        "interval_seconds": 60
    },
    "VehicleSpeed": {
        "interval_seconds": 60
    },
    "OutsideTemp": {
        "interval_seconds": 60
    },
    "TpmsPressureFl": {
        "interval_seconds": 60
    },
    "TpmsPressureFr": {
        "interval_seconds": 60
    },
    "TpmsPressureRl": {
        "interval_seconds": 60
    },
    "TpmsPressureRr": {
        "interval_seconds": 60
    },
    "PackVoltage": {
        "interval_seconds": 60
    },
    "EnergyRemaining": {
        "interval_seconds": 60
    },
    "InsideTemp": {
        "interval_seconds": 60
    },
    "DCDCEnable": {
        "interval_seconds": 60
    },
    "Soc": {
        "interval_seconds": 60
    },
    "IdealBatteryRange": {
        "interval_seconds": 60
    },
    "DestinationName": {
        "interval_seconds": 60
    },
    "Locked": {
        "interval_seconds": 60
    }
}
agbpatro commented 2 months ago

yea you are requesting to stream 20 fields per minute. Max allowed is 10 fields per minute

0xdev22 commented 2 months ago

yea you are requesting to stream 20 fields per minute. Max allowed is 10 fields per minute

Thank you @agbpatro