Fabric Answers事件:如何查看所有自定义属性?

时间:2018-02-15 13:20:27

标签: crashlytics google-fabric

在我的应用中,当用户在表格行中报告拼写错误时,我会发送一个名为GET _search { "query": { "bool": { "must": [ { "term": { "persons.id.keyword": "P123" }} ] } } } 的活动,其中自定义属性const eventEpic = (action$, store) => { // Take stream of actions which have to be buffered return action$.ofType(ACTION) ::map((action) => action.payload) // Get stream of those actions, but only actions which are in specific time frame. // I use it to ignore actions which are received when I don't need them ::windowToggle( action$.ofType(BUFFER_WINDOW_OPENING_ACTION), // in my example it is some success async operation () => action$.ofType(BUFFER_WINDOW_CLOSING_ACTION), // in my example it is initiation of some async operation ) // Get new stream of changes ::switchMap((changes$) => { return changes$ // Close buffer on // - each 1000 ms (or _bufferTime, depending which is higher), or // - disptach of user actions which should immidiatelly close the buffer to update the view ::bufferWhen(() => { return merge( interval(Math.max(1000, _bufferTime)), action$.ofType( SOME_SPECIFIC_USER_ACTION_1, SOME_OTHER_USER_ACTION_2, ), ); }) ::filter((buffer) => buffer.length > 0) // Take actions as long as BUFFER_WINDOW_CLOSING_ACTION is not dispatched ::takeUntil(action$.ofType(BUFFER_WINDOW_CLOSING_ACTION)) ::map((result) => writeToStoreAction(result)); }); }; 包含该行的mistake

在我的情况下,可能有超过400个不同的值,但在Fabric中我只看到前100个。

enter image description here

有没有办法看到所有这些?

1 个答案:

答案 0 :(得分:3)

在Fabric中,我们显示前10名并且无法查看完整的400.如果您将应用程序链接到Firebase,则最多可以访问25个属性。查看https://docs.fabric.io/apple/answers/ios-export-firebase.html了解详情。