How to get data from graphite using python script

Asked by rajcdacblr

i wanted a python script which extract the data from the graphite and returns the list of value.Or guide me how can i do it?

Question information

Language:
English Edit question
Status:
Solved
For:
Graphite Edit question
Assignee:
No assignee Edit question
Solved by:
rajcdacblr
Solved:
Last query:
Last reply:
Revision history for this message
Matthew Kemp (mattkemp) said :
#1

The easiest way to access values from Graphite is through using the URL API and setting rawData=true. For example:

http://yourgraphite/render?target=foo.bar&target=foo.baz&rawData=true

would give you a text response that has one line per target. The format for each line is:

<target>,<start_time>,<end_time>,<step>|<comma-separated-values>

Revision history for this message
rajcdacblr (rajcdacblr) said :
#2

Thanks