For the data I'm using http://bl.ocks.org/mbostock/raw/4090846/us.json For geo I'm using TopoJSON https://github.com/mbostock/topojson
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wrk -c 16 -t 8 -d 85s -s wrk.lua —latency —timeout 5s http://our.host/our/uri |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'android' | |
repositories { | |
maven { | |
url "http://www.bugsense.com/gradle/" | |
} | |
} | |
dependencies { | |
compile "com.bugsense.trace:bugsense:3.5" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<repositories> | |
<!-- other repositories here --> | |
<repository> | |
<id>bugsense repo</id> | |
<name>The BugSense Repository</name> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependencies> | |
<!-- other dependencies here --> | |
<dependency> | |
<groupId>com.bugsense.trace</groupId> | |
<artifactId>bugsense</artifactId> | |
<version>3.5</version> | |
</dependency> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setLogging(int lines) | |
setLogging(String filter) | |
setLogging(int lines, String filter) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BugSenseHandler.addCrashExtraData("level", "second level"); | |
BugSenseHandler.addCrashExtraData("difficulty", "impossibruuu"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For example if you want to get the last 1000 lines and log all messages | |
// with priority level "warning" and higher | |
BugSenseHandler.setLogging(1000, "*:W"); | |
//Log last 100 messages | |
BugSenseHandler.setLogging(100); | |
//Log all the messages with priority level "warning" and higher, on all tags. | |
BugSenseHandler.setLogging("*:W"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | |
[BugSenseController sharedControllerWithBugSenseAPIKey:@"<Your BugSense API Key>"]; | |
// ... | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <BugSense-iOS/BugSenseController.h> |
NewerOlder