Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
configuration
Commits
863e1087
Commit
863e1087
authored
Aug 22, 2017
by
syed-awais-ali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes
parent
cc986977
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
6 deletions
+25
-6
util/jenkins/cloudflare-hit-rate.py
+25
-6
No files found.
util/jenkins/cloudflare-hit-rate.py
View file @
863e1087
"""
CloudFlare API
https://api.cloudflare.com/#zone-analytics-dashboard
"""
import
requests
import
argparse
import
sys
CLOUDFLARE_API_ENDPOINT
=
"https://api.cloudflare.com/client/v4/"
def
calcualte_cache_hit_rate
(
zone_id
,
auth_key
,
email
):
def
calcualte_cache_hit_rate
(
zone_id
,
auth_key
,
email
,
threshold
):
HEADERS
=
{
"Accept"
:
"application/json"
,
"X-Auth-Key"
:
auth_key
,
"X-Auth-Email"
:
email
}
# for last 7 hours, -419 indicates minutes, we can go
# beyond that as well, for example for last 15
# hours it will be -899
PARAMS
=
{
"since"
:
"-419"
,
"continuous"
:
"true"
}
res
=
requests
.
get
(
CLOUDFLARE_API_ENDPOINT
+
"zones/"
+
zone_id
+
"/analytics/dashboard?since=-419&continuous=true"
,
headers
=
HEADERS
)
+
"/analytics/dashboard"
,
headers
=
HEADERS
,
params
=
PARAMS
)
try
:
data
=
res
.
json
()
all_req
=
float
(
data
[
"result"
][
"timeseries"
][
0
][
"requests"
][
"all"
])
cached_req
=
float
(
data
[
"result"
][
"timeseries"
][
0
][
"requests"
][
"cached"
])
threshold_limit
=
cached_req
*
100.0
/
all_req
current_cache_hit_rate
=
cached_req
/
all_req
*
100
if
current_cache_hit_rate
<
threshold
:
sys
.
exit
(
1
)
except
Exception
as
error
:
print
"JSON Error: {}"
.
format
(
error
)
# Add threshold for alerts/alarms
if
__name__
==
"__main__"
:
parser
=
argparse
.
ArgumentParser
()
...
...
@@ -26,6 +43,8 @@ if __name__ == "__main__":
help
=
"Authentication Key"
)
parser
.
add_argument
(
'-e'
,
'--email'
,
required
=
True
,
help
=
"email to use for authentication for CloudFlare API"
)
parser
.
add_argument
(
'-t'
,
'--threshold'
,
required
=
True
,
help
=
"Threshold limit to be passed to check against it"
)
args
=
parser
.
parse_args
()
calcualte_cache_hit_rate
(
args
.
zone
,
args
.
auth_key
,
args
.
email
)
calcualte_cache_hit_rate
(
args
.
zone
,
args
.
auth_key
,
args
.
email
,
args
.
threshold
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment