I'm not sure how you want your data to appear in Keen.io. You may want something like this:
{
"P0":9,
"P1":3,
"P2":11,
"P3":8,
"P4":2,
"P5":1,
"P6":8,
"P7":2,
"P8":2,
"P9":5
}
This would give you an event with 10 different named properties that could be queried. This format would imply that the value P0 is a different kind of data than the value of P1.
If the values are all the same, such as if they were all readings from the same sensor and you are batching them together for transmission, you would probably not format them as above. Doing so would make it hard to build a visualization of the data.
In that case it would be best to send them as separate events:
etc.
Another option would be to send an array of values:
{ "P":[9,3,11, 8,2,1,8,2,2,5]}
If you want to tell us more about how you want the data to appear in your Keen.io collection I or someone else can give some more specific help about how to format it.