Skip to content
New issue

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

Add p95 into the latency statistics #405

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

Sudiksha
Copy link

General trend is to capture p90, p95 and p99.
Added changes to produce output for p95 response time latency stats too. Please review and merge.

@DiegoBetancourtC
Copy link

While this push request is accepted, you can use this:

FROM alpine:latest as build
RUN apk add --update alpine-sdk perl linux-headers
RUN cd /tmp                                 && \
    git clone -b 4.2.0 https://github.com/wg/wrk
RUN cd /tmp/wrk                             && \
    sed -i 's/90.0, 99.0/90.0, 95.0, 99.0/g' src/wrk.c && \
    make 

FROM alpine:latest
COPY --from=build /tmp/wrk/wrk /usr/local/bin/
RUN apk add --no-cache libgcc
WORKDIR /data
ENTRYPOINT ["wrk"]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants